about summary refs log tree commit diff
path: root/Src/Zle/zle_move.c
Commit message (Collapse)AuthorAgeFilesLines
* Add match-bracket widget that takes a position and/or parameter to store ↵ mikachu/redrawhookMikael Magnusson2015-09-271-0/+74
| | | | | | | | | | | | | | | | | result, and does no weird vi stuff I use this in my zle-line-pre-redraw hook, local -a hackcol=(red cyan) local mpos cpos off for off in 0 1; do (( cpos = CURSOR - off )) if (( cpos >= 0 )) && zle .match-bracket $cpos mpos; then region_highlight+=("$((cpos)) $((cpos+1)) bold,bg=${hackcol[2]},fg=black" "$((mpos)) $((mpos+1)) bold,bg=${hackcol[1]},fg=black") break fi done
* 36273: teach endofline() and endoflinehist() about invicmdmode() cursor ↵Barton E. Schaefer2015-08-221-0/+4
| | | | placement.
* 36096: special . mark in vi modeOliver Kiddle2015-08-111-12/+24
|
* 36044: deactivate-region widget for escape in visual modeOliver Kiddle2015-08-111-0/+7
|
* 33924: allow vi line/characterwise mode to be forcedOliver Kiddle2014-12-081-0/+12
|
* 33860: minor fixes to vi mode changesOliver Kiddle2014-12-051-5/+7
|
* 33636: add support for a linewise visual selection modeOliver Kiddle2014-11-171-0/+19
|
* 33635: adapt region to function as vim style visual selection modeOliver Kiddle2014-11-171-0/+18
|
* 33519: last character in the buffer can be cut, changed or yanked using ↵Oliver Kiddle2014-10-231-1/+1
| | | | vi-forward-char
* Jun. T: typo in vi-goto-markPeter Stephenson2013-04-021-1/+1
|
* 31037: return to previous position with vi-goto-mark using `` or ''Oliver Kiddle2013-02-091-4/+12
|
* Aaron Scrab: 30604: make repeating vi skip character useful by ignoringPeter Stephenson2012-08-131-7/+24
| | | | character just matched
* Aaron Schrab: 30603: repeating vi skip characters command caused bad positionPeter Stephenson2012-08-131-0/+2
|
* 29208: make vimatchbracket more useful in emacs modeMikael Magnusson2011-05-121-0/+3
|
* 28611: remove unused special behaviour for vi mark 26Peter Stephenson2011-01-111-9/+4
|
* Locking simplification and signed/unsigned fixes.Wayne Davison2008-05-051-2/+2
|
* 24915: some more fix-ups for combining charactersPeter Stephenson2008-05-041-7/+26
|
* 24856: add IS_COMBINING() and IS_BASECHAR() and widen testsPeter Stephenson2008-04-211-11/+7
|
* unposted: missing assignment in new backwardmetafiedchar()Peter Stephenson2008-04-211-2/+3
|
* 24853: bits missed from patchPeter Stephenson2008-04-201-2/+2
|
* 24853: use metafied strings for inner loops over historyPeter Stephenson2008-04-201-0/+138
|
* 24819: fix transposing characters and sneaky combination generationPeter Stephenson2008-04-151-13/+33
|
* 24808: initial support for combining characters in zlePeter Stephenson2008-04-131-29/+163
|
* 24782: initial go at highlighting of characters in zle command linesPeter Stephenson2008-04-031-0/+11
|
* users/11398: vi-goto-mark broken by multibyte supportPeter Stephenson2007-04-151-1/+2
|
* Changed iblank() calls on zleline to use ZC_iblank().Wayne Davison2005-11-011-1/+1
|
* Fixed a compiler warning about a signed/unsigned comparison.Wayne Davison2005-10-311-3/+5
|
* 20854: more Unicode stuff.Peter Stephenson2005-02-231-4/+4
|
* 20822: Initial code for Unicode/multibyte inputPeter Stephenson2005-02-181-14/+15
| | | | 20823: Debugging test in stat wrong for 64-bit systems
* c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson2005-01-141-83/+83
| | | | unposted: update version to 4.2.3-dev-1
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-11/+11
|
* 19553: rename c in zle to lastcharPeter Stephenson2004-03-081-127/+136
|
* Initial revisionTanaka Akira1999-04-151-0/+502