about summary refs log tree commit diff
path: root/Src/Zle
Commit message (Collapse)AuthorAgeFilesLines
* 31784: better line width calculation for completion listingsBarton E. Schaefer2013-10-031-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.
* 31781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer2013-10-031-0/+1
|
* 31765: If zle starts in viins mark as insertion.Peter Stephenson2013-09-251-0/+7
| | | | This allows undo to work on everything entered.
* 31737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer2013-09-191-1/+1
|
* 31735: fix off-by-one in completion utility cache code.Axel Beckert2013-09-191-1/+1
| | | | Was causing crashes in complex completions, particularly with taskwarrior
* 31644: Fix insertion of multibyte characters into editor line.Peter Stephenson2013-08-081-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.
* users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson2013-08-081-0/+7
| | | | Update ZLE version if history is read, pushed or popped with ZLE active
* 31611: attempt to fix crash completing redirection in do loopPeter Stephenson2013-08-021-2/+24
|
* 31483: Call zrefresh() before unqueue()ing signalsMikael Magnusson2013-06-271-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 }
* 31350: block SIGWINCH nearly all the time, exceptBart Schaefer2013-04-301-0/+10
| | | | | when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
* 31272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer2013-04-201-1/+0
|
* 31172: Let vared define custom init and finish hooksFrank Terbeck2013-04-051-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
* 31174: zle: Make sure state changes are refreshed after init hookFrank Terbeck2013-04-051-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.
* 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
|
* users/17318: only increment the undo variable return value for thePeter Stephenson2012-10-091-0/+11
| | | | first request in a row
* users/17314: ensure an undo change numberPeter Stephenson2012-10-091-10/+17
| | | | | uniquely specifies a point in editing history by incrementing the value returned by the variable.
* 30715: use enum lextok for variables containing lexical tokensPeter Stephenson2012-10-051-6/+9
|
* John Stahara: 30641: bindkey -N error report is misleadingPeter Stephenson2012-08-251-1/+1
| | | | when copying keymap.
* 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
|
* unposted: fix trailing spaces from previous commitMikael Magnusson2012-05-021-1/+1
|
* 30425 (fixed): Add localhistory/globalhistory to $ZLE_STATE as set by the ↵Mikael Magnusson2012-05-021-10/+18
| | | | set-local-history zle widget
* users/16932: implement $UNDO_CHANGE_NO and argument to undo widgetPeter Stephenson2012-03-293-2/+33
|
* 30193: remnulargs() after poking into string in case length changesBart Schaefer2012-02-091-1/+1
|
* Holger Macht via Ismail: 30185: openSUSE directory missed fromPeter Stephenson2012-02-071-1/+1
| | | | module definition
* 30084: `zle -T tc func' for zle testing of termcap outputPeter Stephenson2012-01-053-3/+144
|
* queue_signals() to prevent adjustwinsize() loop on FreeBSDBart Schaefer2012-01-021-0/+14
|
* 30033: silence valgrind warningsBart Schaefer2011-12-201-0/+1
|
* 29891: make zle -lL with arguments workPeter Stephenson2011-11-041-1/+11
|
* 29859: compadd handles its own optionsPeter Stephenson2011-10-261-1/+1
|
* 29820: _pick_variant -b to match builtinPeter Stephenson2011-10-141-0/+41
|
* users/16375: initialise nrefs on each loop in match testsPeter Stephenson2011-09-181-4/+6
|
* 29681: use [] to dereference region_highlightsMikael Magnusson2011-08-171-7/+7
|
* 29643: set incompfunc to zero when executing hook or trap functionPeter Stephenson2011-08-041-5/+0
|
* 29644: work around _describe bug, plus cosmetic tweaksPeter Stephenson2011-08-032-2/+14
|
* 29542: fix crash in hbegin(), remove bad testPeter Stephenson2011-07-121-1/+1
| | | | 29543: fix backslash-newline within words with histlexwords
* 29503: Missing popheap() on failed autoloadPeter Stephenson2011-06-231-4/+0
|
* unposted: Remove additional for loop noticed by MikaelPeter Stephenson2011-06-191-2/+0
|
* 29491: remove some variables set but not usedPeter Stephenson2011-06-194-14/+6
|
* 29459: Further fixes for parameter flag completion,Peter Stephenson2011-06-041-2/+4
| | | | plus drive-by fix for double-quoted parameter completion with flags
* 29452: allow completion of parameter flagsPeter Stephenson2011-06-031-3/+13
|
* 29374: exit ZLE immediately if exit pending when keypress expectedPeter Stephenson2011-05-261-2/+2
|
* 29307, 29308 + replies: Fix some doubled words in docs and comments.Mikael Magnusson2011-05-192-2/+2
|
* 29268: extra dupstring() for value to be used in completion match groupPeter Stephenson2011-05-141-1/+1
|
* 29267: add -enable-zsh-debug and use for debugging completion matcher groupsPeter Stephenson2011-05-145-6/+132
|
* Danek: 29254: fix some compiler warningsPeter Stephenson2011-05-131-1/+0
|
* Jérémie Roquet: 29258: mark a couple more functions for export.Peter Stephenson2011-05-131-2/+2
|
* 29208: make vimatchbracket more useful in emacs modeMikael Magnusson2011-05-121-0/+3
|
* 29165: use term.h globally if needed at all.Peter Stephenson2011-05-098-144/+156
|