summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Collapse)AuthorFilesLines
2014-12-0533860: minor fixes to vi mode changesOliver Kiddle4-44/+52
2014-12-0533845: save correct cursor position with push-line from vi command modeOliver Kiddle1-0/+2
2014-11-3033823: overwrite mode shouldn't replace newlinesOliver Kiddle1-11/+10
2014-11-3033800: remove old workaround for ancient systems toOliver Kiddle1-41/+2
consume typeahead before setting up the terminal
2014-11-3033818: fix types passed to sizeof detected by coverity as being wrongOliver Kiddle1-2/+2
2014-11-2833815: Fix word transposition bug.Marc Finet1-1/+0
With a one-character word the wrong two words could be transposed.
2014-11-2533770: avoid calling identical FIONREAD ioctl twice in successionOliver Kiddle1-9/+5
2014-11-2133738: account for a selection in vi-replace-charsOliver Kiddle1-8/+35
2014-11-2133730: vim style text objects for selecting wordsOliver Kiddle4-1/+335
2014-11-17unposted: reindent large blockOliver Kiddle1-69/+68
2014-11-1733704: keybindings, documentation, tests and minorOliver Kiddle4-13/+26
fixes for vim style visual selection changes
2014-11-1733636: add support for a linewise visual selection modeOliver Kiddle5-11/+92
2014-11-1733635: adapt region to function as vim style visual selection modeOliver Kiddle5-13/+70
2014-11-1733700: new widget for put in vim style visual selection modeOliver Kiddle3-5/+59
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