summaryrefslogtreecommitdiff
path: root/Src/Zle
AgeCommit message (Collapse)AuthorFilesLines
2013-11-1231961: rationalise fd watching to use structurePeter Stephenson3-60/+56
2013-11-0731937: zle -Fw uses widget semantics for file descriptor handlerPeter Stephenson3-20/+41
2013-10-2831922: zlecharasstring missed flip of bit 5 after MetaPeter Stephenson1-0/+1
2013-10-2431882: Insulate completion widget against environment.Peter Stephenson1-4/+1
Prevents change in pipestatus leaking back out.
2013-10-0331784: better line width calculation for completion listingsBarton E. Schaefer1-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.
2013-10-0331781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer1-0/+1
2013-09-2531765: If zle starts in viins mark as insertion.Peter Stephenson1-0/+7
This allows undo to work on everything entered.
2013-09-1931737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer1-1/+1
2013-09-1931735: fix off-by-one in completion utility cache code.Axel Beckert1-1/+1
Was causing crashes in complex completions, particularly with taskwarrior
2013-08-0831644: Fix insertion of multibyte characters into editor line.Peter Stephenson1-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.
2013-08-08users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson1-0/+7
Update ZLE version if history is read, pushed or popped with ZLE active
2013-08-0231611: attempt to fix crash completing redirection in do loopPeter Stephenson1-2/+24
2013-06-2731483: Call zrefresh() before unqueue()ing signalsMikael Magnusson1-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 }
2013-04-3031350: block SIGWINCH nearly all the time, exceptBart Schaefer1-0/+10
when about to calculate prompts or do synchronous read, so syscalls are not interrupted by window size changes.
2013-04-2031272: Avoid double free, get_compctl should not free its arguments.Bart Schaefer1-1/+0
2013-04-0531172: Let vared define custom init and finish hooksFrank Terbeck1-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
2013-04-0531174: zle: Make sure state changes are refreshed after init hookFrank Terbeck1-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.
2013-04-02Jun. T: typo in vi-goto-markPeter Stephenson1-1/+1
2013-02-0931037: return to previous position with vi-goto-mark using `` or ''Oliver Kiddle1-4/+12
2012-10-09users/17318: only increment the undo variable return value for thePeter Stephenson1-0/+11
first request in a row
2012-10-09users/17314: ensure an undo change numberPeter Stephenson1-10/+17
uniquely specifies a point in editing history by incrementing the value returned by the variable.
2012-10-0530715: use enum lextok for variables containing lexical tokensPeter Stephenson1-6/+9
2012-08-25John Stahara: 30641: bindkey -N error report is misleadingPeter Stephenson1-1/+1
when copying keymap.
2012-08-13Aaron Scrab: 30604: make repeating vi skip character useful by ignoringPeter Stephenson1-7/+24
character just matched
2012-08-13Aaron Schrab: 30603: repeating vi skip characters command caused bad positionPeter Stephenson1-0/+2
2012-05-02unposted: fix trailing spaces from previous commitMikael Magnusson1-1/+1
2012-05-0230425 (fixed): Add localhistory/globalhistory to $ZLE_STATE as set by the ↵Mikael Magnusson1-10/+18
set-local-history zle widget
2012-03-29users/16932: implement $UNDO_CHANGE_NO and argument to undo widgetPeter Stephenson3-2/+33
2012-02-0930193: remnulargs() after poking into string in case length changesBart Schaefer1-1/+1
2012-02-07Holger Macht via Ismail: 30185: openSUSE directory missed fromPeter Stephenson1-1/+1
module definition
2012-01-0530084: `zle -T tc func' for zle testing of termcap outputPeter Stephenson3-3/+144
2012-01-02queue_signals() to prevent adjustwinsize() loop on FreeBSDBart Schaefer1-0/+14
2011-12-2030033: silence valgrind warningsBart Schaefer1-0/+1
2011-11-0429891: make zle -lL with arguments workPeter Stephenson1-1/+11
2011-10-2629859: compadd handles its own optionsPeter Stephenson1-1/+1
2011-10-1429820: _pick_variant -b to match builtinPeter Stephenson1-0/+41
2011-09-18users/16375: initialise nrefs on each loop in match testsPeter Stephenson1-4/+6
2011-08-1729681: use [] to dereference region_highlightsMikael Magnusson1-7/+7
2011-08-0429643: set incompfunc to zero when executing hook or trap functionPeter Stephenson1-5/+0
2011-08-0329644: work around _describe bug, plus cosmetic tweaksPeter Stephenson2-2/+14
2011-07-1229542: fix crash in hbegin(), remove bad testPeter Stephenson1-1/+1
29543: fix backslash-newline within words with histlexwords
2011-06-2329503: Missing popheap() on failed autoloadPeter Stephenson1-4/+0
2011-06-19unposted: Remove additional for loop noticed by MikaelPeter Stephenson1-2/+0
2011-06-1929491: remove some variables set but not usedPeter Stephenson4-14/+6
2011-06-0429459: Further fixes for parameter flag completion,Peter Stephenson1-2/+4
plus drive-by fix for double-quoted parameter completion with flags
2011-06-0329452: allow completion of parameter flagsPeter Stephenson1-3/+13
2011-05-2629374: exit ZLE immediately if exit pending when keypress expectedPeter Stephenson1-2/+2
2011-05-1929307, 29308 + replies: Fix some doubled words in docs and comments.Mikael Magnusson2-2/+2
2011-05-1429268: extra dupstring() for value to be used in completion match groupPeter Stephenson1-1/+1
2011-05-1429267: add -enable-zsh-debug and use for debugging completion matcher groupsPeter Stephenson5-6/+132