about summary refs log tree commit diff
path: root/Src/Zle
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in initial commitMikael Magnusson2014-12-081-1/+1
|
* Remove interrupt status on return to main keymap.Peter Stephenson2014-12-071-0/+10
|
* First go at separating errors and keyboard interruptsPeter Stephenson2014-12-079-20/+41
| | | | | | | | This is the first posting exactly as was, with known errors and omissions. Basic strategy is to introduce bits to errflag and to set and reset them separately.
* 33860: minor fixes to vi mode changesOliver Kiddle2014-12-054-44/+52
|
* 33845: save correct cursor position with push-line from vi command modeOliver Kiddle2014-12-051-0/+2
|
* 33823: overwrite mode shouldn't replace newlinesOliver Kiddle2014-11-301-11/+10
|
* 33800: remove old workaround for ancient systems toOliver Kiddle2014-11-301-41/+2
| | | | consume typeahead before setting up the terminal
* 33818: fix types passed to sizeof detected by coverity as being wrongOliver Kiddle2014-11-301-2/+2
|
* 33815: Fix word transposition bug.Marc Finet2014-11-281-1/+0
| | | | With a one-character word the wrong two words could be transposed.
* 33770: avoid calling identical FIONREAD ioctl twice in successionOliver Kiddle2014-11-251-9/+5
|
* 33738: account for a selection in vi-replace-charsOliver Kiddle2014-11-211-8/+35
|
* 33730: vim style text objects for selecting wordsOliver Kiddle2014-11-214-1/+335
|
* unposted: reindent large blockOliver Kiddle2014-11-171-69/+68
|
* 33704: keybindings, documentation, tests and minorOliver Kiddle2014-11-174-13/+26
| | | | fixes for vim style visual selection changes
* 33636: add support for a linewise visual selection modeOliver Kiddle2014-11-175-11/+92
|
* 33635: adapt region to function as vim style visual selection modeOliver Kiddle2014-11-175-13/+70
|
* 33700: new widget for put in vim style visual selection modeOliver Kiddle2014-11-173-5/+59
|
* 33633: support vim style text objectsOliver Kiddle2014-11-171-2/+13
|
* 33632: use viopp and visual local keymaps if they existOliver Kiddle2014-11-172-1/+9
|
* 33697: new vim style vi-backward-word-end widgetsOliver Kiddle2014-11-152-3/+66
|
* 33696: simple up/down line widgets that don't go through history linesOliver Kiddle2014-11-152-10/+12
|
* 33695: fix various vi-indent problems and vi-swap-case on a blank lineOliver Kiddle2014-11-151-4/+10
|
* 33669: allow an empty line to be yanked with yyOliver Kiddle2014-11-131-2/+3
| | | | This by allocating 1 byte instead of 0 for the empty buffer.
* 33639: fix bug with vi operators on a blank lineOliver Kiddle2014-11-091-9/+3
| | | | and with backward bracket matching
* 33624: keep region active when widget failsOliver Kiddle2014-11-071-1/+0
|
* 33604: fix change merging for vi mode where a change has just been undoneOliver Kiddle2014-11-052-5/+5
|
* 33596: make local keymap keybinding hide global keymapOliver Kiddle2014-11-041-1/+1
| | | | binding that is a prefix of the local binding
* 33593: support numeric argument to vi-joinOliver Kiddle2014-11-031-14/+21
|
* 33575: reset vi change start position if text is insertedOliver Kiddle2014-11-032-1/+4
| | | | before it or on history movement
* 33570, 33576: make killring/yank-pop work in vi mode afterOliver Kiddle2014-10-304-87/+97
| | | | vi-put-before and vi-put-after
* Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer2014-10-292-15/+25
|\ | | | | | | | | Conflicts: ChangeLog
| * 33528: take notice of last column position when using vi-yankOliver Kiddle2014-10-292-15/+25
| | | | | | | | and an upward cursor movement
* | 33563: Completion/Base/Core/_main_complete, Src/Zle/complist.c: fix thinko ↵Barton E. Schaefer2014-10-291-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.
* 33480, slightly tweaked: fix for $' completion.Peter Stephenson2014-10-241-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.
* 33520: correct cursor positioning following a vi mode yank operationOliver Kiddle2014-10-241-1/+8
|
* 33519: last character in the buffer can be cut, changed or yanked using ↵Oliver Kiddle2014-10-231-1/+1
| | | | vi-forward-char
* 33518: add support for "_ vi buffer and arguments to vi-set-buffer from a ↵Oliver Kiddle2014-10-233-7/+20
| | | | zle widget
* 33514: even with a named vi buffer, we should update the default bufferOliver Kiddle2014-10-231-1/+0
|
* 33513: vi mode deletions should replace cut buffer not append to itOliver Kiddle2014-10-231-4/+4
|
* 33512: add support for "0 vi buffer and yank to itOliver Kiddle2014-10-234-14/+22
|
* 33515: suppress parser error messages in comp_match()Barton E. Schaefer2014-10-221-0/+3
|
* 33320 (cf. PWS 33311): revert 33069, fix lexing of bangchar during completionBarton E. Schaefer2014-10-021-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.
* Fix some compiler warnings in ZlePeter Stephenson2014-09-302-3/+2
|
* 33047: use git to simplify massively source distribution file selectionPeter Stephenson2014-08-231-12/+0
|
* 32958: bitwise logic fixMiles Ohlrich2014-08-041-1/+1
|
* 32600: in _arguments, "-" is not an option letter after another "-"m0viefreak2014-05-081-3/+7
|
* 32540: in doexpandhist(), discard saved line position data rather than ↵Barton E. Schaefer2014-04-132-1/+22
| | | | restoring from it (updates 32531).
* 32531: fix memory leaks detected by valgrindBarton E. Schaefer2014-04-062-0/+4
|
* m0viefreak: users/18655,18657,18660: assorted auto-removable suffix fixesm0viefreak2014-03-233-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
* 32480: Fix crash in vi mode with too few previous changesJun T2014-03-131-1/+1
|