summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Collapse)AuthorFilesLines
2014-10-2333519: last character in the buffer can be cut, changed or yanked using ↵Oliver Kiddle1-1/+1
vi-forward-char
2014-10-2333518: add support for "_ vi buffer and arguments to vi-set-buffer from a ↵Oliver Kiddle3-7/+20
zle widget
2014-10-2333514: even with a named vi buffer, we should update the default bufferOliver Kiddle1-1/+0
2014-10-2333513: vi mode deletions should replace cut buffer not append to itOliver Kiddle1-4/+4
2014-10-2333512: add support for "0 vi buffer and yank to itOliver Kiddle4-14/+22
2014-10-2233515: suppress parser error messages in comp_match()Barton E. Schaefer1-0/+3
2014-10-0233320 (cf. PWS 33311): revert 33069, fix lexing of bangchar during completionBarton E. Schaefer1-0/+2
add typtab_flags bits (replaces specialcomma boolean) to record any unusual handling of typtab entries; signal safety; make bangchar non-special during completion lexing of the command line.
2014-09-30Fix some compiler warnings in ZlePeter Stephenson2-3/+2
2014-08-2333047: use git to simplify massively source distribution file selectionPeter Stephenson1-12/+0
2014-08-0432958: bitwise logic fixMiles Ohlrich1-1/+1
2014-05-0832600: in _arguments, "-" is not an option letter after another "-"m0viefreak1-3/+7
2014-04-1332540: in doexpandhist(), discard saved line position data rather than ↵Barton E. Schaefer2-1/+22
restoring from it (updates 32531).
2014-04-0632531: fix memory leaks detected by valgrindBarton E. Schaefer2-0/+4
2014-03-23m0viefreak: users/18655,18657,18660: assorted auto-removable suffix fixesm0viefreak3-17/+17
Src/Zle/compresult.c, Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c: fix auto-removable suffix highlighting Completion/Unix/Command/_git: fix compadd for auto-removable suffix in _git_commit_ranges and _git_stash
2014-03-1332480: Fix crash in vi mode with too few previous changesJun T1-1/+1
2014-03-0332450: make get-line widget set the history number that was saved with the lineOliver Kiddle1-0/+4
2014-03-0332448: fix seg fault if $WIDGET is accessed after recursive-edit is interruptedOliver Kiddle1-1/+1
2014-03-0332436: allow = to be used in ZLS_COLORS patterns if it is quoted or inside ↵Oliver Kiddle1-2/+15
parentheses
2014-02-2332427: avoid busy loop on closed descriptors for "zle -F" handlersBarton E. Schaefer1-3/+36
Also assure the handlers are called on error conditions and document the extra argument that is passed in the error case.
2014-02-1432361: don't reset lastline before completionOliver Kiddle1-1/+0
2014-02-0832365: another stab at the heuristic for initializing rprompt_indentBarton E. Schaefer1-1/+1
2014-02-0532342: fix overstrike for vi mode and use varying vi commands at line startOliver Kiddle2-10/+12
2014-02-0532334 (modified so KEEPSUFFIX is unchanged for vi-cmd-mode; based onOliver Kiddle4-8/+29
Jun T: 32324, 32330), 32347, Jun T: 32344, 32349: add split-undo zle widget for configurable breaks in undo sequence
2014-02-02Fix leading whitespace in a commentBarton E. Schaefer1-1/+1
2014-02-0232340: improve error messages for "read -c" / "read -l"Barton E. Schaefer1-1/+1
2014-01-3132314: merge undo events corresponding to vi change in the vi-cmd-mode ↵Oliver Kiddle4-12/+19
widget so undo from insert mode is useful again
2014-01-2832303: simplistic completion after $x:Peter Stephenson1-0/+14
2014-01-2832308: Improve initialising of vi change.Peter Stephenson2-3/+26
Better handling when entering viins on entry to editor. Slightly changed since post to use vi command a.
2014-01-1832283: fix crash in menu selection when number of terminal lines is smallBarton E. Schaefer1-1/+1
2014-01-0232196: copy-prev-shell-word needs a lexer flagCarl Drougge1-1/+1
2013-12-2532182: re-enable command completion after a separatorBarton E. Schaefer1-4/+7
2013-12-1832157: fix extra line feed after prompt, and erased character in completion ↵Barton E. Schaefer1-23/+24
listing, when ZLE_RPROMPT_INDENT=0
2013-12-1632114: ZLE_PROMPT_INDENT allows you to move rprompt flush rightPatrick Oscity2-7/+31
2013-11-1231961: rationalise fd watching to use structurePeter Stephenson3-60/+56
2013-11-0731937: zle -Fw uses widget semantics for file descriptor handlerPeter Stephenson3-20/+41
2013-10-2831922: zlecharasstring missed flip of bit 5 after MetaPeter Stephenson1-0/+1
2013-10-2431882: Insulate completion widget against environment.Peter Stephenson1-4/+1
Prevents change in pipestatus leaking back out.
2013-10-0331784: better line width calculation for completion listingsBarton E. Schaefer1-25/+33
When deciding whether there is enough horizontal space to show completion descriptions for each match in a listing, treat the separator as part of the description rather than as part of the match, and account for lines that have already wrapped due to very long matches.
2013-10-0331781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer1-0/+1
2013-09-2531765: If zle starts in viins mark as insertion.Peter Stephenson1-0/+7
This allows undo to work on everything entered.
2013-09-1931737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer1-1/+1
2013-09-1931735: fix off-by-one in completion utility cache code.Axel Beckert1-1/+1
Was causing crashes in complex completions, particularly with taskwarrior
2013-08-0831644: Fix insertion of multibyte characters into editor line.Peter Stephenson1-1/+2
This was broken for a string that came from outside ZLE in the case where the editing buffer wasn't metafied, i.e. not in completion.
2013-08-08users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson1-0/+7
Update ZLE version if history is read, pushed or popped with ZLE active
2013-08-0231611: attempt to fix crash completing redirection in do loopPeter Stephenson1-2/+24
2013-06-2731483: Call zrefresh() before unqueue()ing signalsMikael Magnusson1-0/+2
Not doing so causes problems for example with this .zshrc zle -N zle-line-init foo zle -N set-local-history bar foo() { zle set-local-history -n 1 } bar() { zle reset-prompt }
2013-04-3031350: block SIGWINCH nearly all the time, exceptBart Schaefer1-0/+10
when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
2013-04-2031272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer1-1/+0
2013-04-0531172: Let vared define custom init and finish hooksFrank Terbeck1-7/+14
Using this, you can do things like this in a more straight-forward manner: foo-init() { CURSOR=0; } zle -N foo-init foo=$'Some longer\nbuffer with\nmultiple lines.' vared -i foo-init foo
2013-04-0531174: zle: Make sure state changes are refreshed after init hookFrank Terbeck1-2/+2
If `zrefresh' is not called _after_ the zle-line-init hook, any changes made to the editor's state (be it changes to $CURSOR or $BUFFER or called widgets like `clear-screen') will only be picked up after the first character is typed into the editor.