summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_utils.c
AgeCommit message (Collapse)AuthorFilesLines
2023-12-1352382: avoid the non-standard \e in C code, preferring \033Oliver Kiddle1-1/+1
2023-04-0351597: fix 'vared -c var' when var is unsetJun-ichi Takimoto1-1/+2
2023-02-2851491: Check should use zlemetacs instead of zlecsMikael Magnusson1-1/+1
Coverity noticed that this first branch of the if statement has "meta" added to all the variable names except this zlecs at the end, so change it to match.
2023-01-1151295: where the end of a region coincides with the end of PREDISPLAY, don't ↵Oliver Kiddle1-3/+3
extend it to include new text Also fix issue where an int was used for a copy of attributes which breaks if int is smaller than zattr.
2023-01-1051292: fix dynamic updates of region_highlight to account for PREDISPLAYOliver Kiddle1-4/+4
2023-01-1051258, 51272: refactor handling of terminal attributes, removing OFF flags ↵Oliver Kiddle1-1/+1
in zattr
2022-12-1651212: remove STOUC() macroOliver Kiddle1-2/+2
This served as a workaround for ancient compilers where casts to unsigned char were broken.
2022-11-1750934: use OSC 52 escape sequence when copying to "* or "+ vi buffersOliver Kiddle1-1/+31
2022-03-2849890: Avoid scanning unallocated memory in saved command line.Peter Stephenson1-1/+1
2020-06-27unposted (after 46068): Fix a compiler warning.Daniel Shahaf1-1/+1
The warning was: . warning: passing 'const char *' to parameter of type 'void *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
2020-06-2546068 (tweaked) (was: github #57): region_highlight: Add memo= support.Daniel Shahaf1-0/+21
This is useful when multiple plugins add region_highlight entries and subsequently want to remove only their own entries. Without this functionality, recognizing one's region_highlight entries is not trivial because the 'start' and 'end' offsets are modified by editing of $BUFFER and the highlight specification may not be unique or distinctive. The tweaks are as follows: - Change zfree() to zsfree() per workers/46070. - Remove the mem.c hunk, as it changed the signature of only one out of two alternative definitions of zsfree(). (The definition that hunk touched is the one that's not used by default.)
2019-07-2644582: Fix foregoing commit to use DPUTS() betterKamil Dudka1-6/+4
2019-07-2444566: make sure Zle doesn't crash if history entry not foundKamil Dudka1-2/+12
2019-04-1044215: Maintain LASTWIDGET across reset-prompt.Roman Perepelitsa1-1/+1
This avoids side effects of asynchronous notifications.
2016-11-2039986, 39989: improve handling of vi-repeat-changeOliver Kiddle1-0/+1
Save previous vi change and throw away a new change that fails. Add zle -f vichange to allow shell widget to be a single change. Fix repeat of command where numeric arguments were multiplied.
2016-11-13unposted: comment in zlecallhook() points to redrawhook() just in caseBarton E. Schaefer1-0/+2
2016-06-0238540: fix undo problem by not moving the current change when only undoing a ↵Oliver Kiddle1-3/+8
history line change
2016-02-0337868: add 'static' to file local variablesJun-ichi Takimoto1-2/+2
2016-01-3037838: use UNUSED() consistentlyJun-ichi Takimoto1-1/+1
2015-11-1137091: clear lastline and lastlinesz when freeingPeter Stephenson1-0/+2
2015-10-26users/20825: fix crash when complex completion hooks.Peter Stephenson1-0/+17
get_undo_current_change() needs protecting against execution in completion environment.
2015-09-25unposted: zle: Document the C helper function processcmd().Daniel Shahaf1-2/+2
Also, tweak the docstring of zlelineasstring().
2015-09-0336416: ^C in getzlequery() just aborts query.Peter Stephenson1-0/+5
Also logical but possibly invisible fix for error propagated back from listing interface.
2015-08-1336131: make use of undo limits; call mkundoent() when $UNDO_CHANGE_NO is ↵Oliver Kiddle1-24/+9
referenced for a clear change number marking the current state
2015-07-1435737: (tweaked c.f. Peter: 35759): use new undo limit for minibuffer and ↵Oliver Kiddle1-1/+1
beep when limit is reached
2015-07-0935708: add UNDO_LIMIT_NOPeter Stephenson1-2/+22
2015-06-12Add non-metafied character length handling.Peter Stephenson1-1/+1
Use this in regex module and add test using $'\ua0'. Rename mb_metacharinit() to mb_charinit() as it does not involve metafied characters.
2015-01-0634117: zle: size_t is unsigned, use int insteadMikael Magnusson1-1/+1
The function wctomb returns an int according to my manpage, and we furthermore check if it is negative, and then return it, and the function signature is int, so declaring it as an int seems to make more sense.
2014-12-1833981: more care with region_highlights managementPeter Stephenson1-27/+34
2014-12-1133876: etc.: Separate errors and keyboards interruptsPeter Stephenson1-1/+2
Combination of 12 commits from interrupt_abort branch. Basic strategy is to introduce bits to errflag and to set and reset them separately. Remove interrupt status on return to main keymap. Turn off ERRFLAG_INT for always block. Restore bit thereafter: we probably need a new variable in order to allow user interrupts to be reset in the always block. Add TRY_BLOCK_INTERRUPT This works the same as TRY_BLOCK_ERROR, but for a SIGINT, too. Ensure propagation of SIGINT from exited job. If received by foreground job, shell uses ERRFLAG_INT, not ERRFLAG_ERROR, to set the new state. Reset errflag before precmd() Add always block in _main_completion to fix ZLS_COLORS Ensures we get the right state of $ZLS_COLORS at the end of _main_complete even if there's an interrupt. However, the "right state" is a bit messy as it depends on styles.
2014-11-1733700: new widget for put in vim style visual selection modeOliver Kiddle1-1/+1
2014-11-1333669: allow an empty line to be yanked with yyOliver Kiddle1-2/+3
This by allocating 1 byte instead of 0 for the empty buffer.
2014-11-0733624: keep region active when widget failsOliver Kiddle1-1/+0
2014-11-0533604: fix change merging for vi mode where a change has just been undoneOliver Kiddle1-3/+3
2014-11-0333575: reset vi change start position if text is insertedOliver Kiddle1-0/+3
before it or on history movement
2014-10-2333518: add support for "_ vi buffer and arguments to vi-set-buffer from a ↵Oliver Kiddle1-1/+1
zle widget
2014-10-2333514: even with a named vi buffer, we should update the default bufferOliver Kiddle1-1/+0
2014-10-2333512: add support for "0 vi buffer and yank to itOliver Kiddle1-7/+14
2014-04-1332540: in doexpandhist(), discard saved line position data rather than ↵Barton E. Schaefer1-0/+21
restoring from it (updates 32531).
2014-02-0532334 (modified so KEEPSUFFIX is unchanged for vi-cmd-mode; based onOliver Kiddle1-0/+26
Jun T: 32324, 32330), 32347, Jun T: 32344, 32349: add split-undo zle widget for configurable breaks in undo sequence
2014-01-3132314: merge undo events corresponding to vi change in the vi-cmd-mode ↵Oliver Kiddle1-1/+4
widget so undo from insert mode is useful again
2013-11-0731937: zle -Fw uses widget semantics for file descriptor handlerPeter Stephenson1-4/+3
2013-10-2831922: zlecharasstring missed flip of bit 5 after MetaPeter Stephenson1-0/+1
2012-10-09users/17318: only increment the undo variable return value for thePeter Stephenson1-0/+11
first request in a row
2012-10-09users/17314: ensure an undo change numberPeter Stephenson1-10/+17
uniquely specifies a point in editing history by incrementing the value returned by the variable.
2012-03-29users/16932: implement $UNDO_CHANGE_NO and argument to undo widgetPeter Stephenson1-2/+28
2011-05-13Jérémie Roquet: 29258: mark a couple more functions for export.Peter Stephenson1-2/+2
2011-05-0929165: use term.h globally if needed at all.Peter Stephenson1-3/+3
2011-03-1128886: Fix region_highlight dynamic updates for $PREDISPLAYPeter Stephenson1-33/+70
2011-02-1828772: Update regions in region highlight dynamicallyPeter Stephenson1-4/+333