summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Collapse)AuthorFilesLines
2014-11-1733633: support vim style text objectsOliver Kiddle1-2/+13
2014-11-1733632: use viopp and visual local keymaps if they existOliver Kiddle2-1/+9
2014-11-1533697: new vim style vi-backward-word-end widgetsOliver Kiddle2-3/+66
2014-11-1533696: simple up/down line widgets that don't go through history linesOliver Kiddle2-10/+12
2014-11-1533695: fix various vi-indent problems and vi-swap-case on a blank lineOliver Kiddle1-4/+10
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-0933639: fix bug with vi operators on a blank lineOliver Kiddle1-9/+3
and with backward bracket matching
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 Kiddle2-5/+5
2014-11-0433596: make local keymap keybinding hide global keymapOliver Kiddle1-1/+1
binding that is a prefix of the local binding
2014-11-0333593: support numeric argument to vi-joinOliver Kiddle1-14/+21
2014-11-0333575: reset vi change start position if text is insertedOliver Kiddle2-1/+4
before it or on history movement
2014-10-3033570, 33576: make killring/yank-pop work in vi mode afterOliver Kiddle4-87/+97
vi-put-before and vi-put-after
2014-10-29Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer2-15/+25
Conflicts: ChangeLog
2014-10-2933563: Completion/Base/Core/_main_complete, Src/Zle/complist.c: fix thinko ↵Barton E. Schaefer1-6/+6
in status message for INT/QUIT signals; check errflag in output loops Two semi-related patches for keyboard interrupt handling in completion, most importantly so that unexpectedly long completion listings can be interrupted.
2014-10-2933528: take notice of last column position when using vi-yankOliver Kiddle2-15/+25
and an upward cursor movement
2014-10-2433480, slightly tweaked: fix for $' completion.Peter Stephenson1-4/+11
Improves case where completing after the $' but before any closing quote, or if the closing quote is absent. No other change --- we still don't attempt to exand the quotes if we're inside them.
2014-10-2433520: correct cursor positioning following a vi mode yank operationOliver Kiddle1-1/+8
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