Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2025-01-30 | 53332, 53334: Avoid strlen calls after sprintf | Oliver Kiddle | 1 | -5/+5 | |
2023-10-26 | 52244: Fix a batch of minor defects reported by Coverity. | Bart Schaefer | 1 | -8/+4 | |
Coverity defects 1547831, 1547826 (remove unused function), 1521551, 1500752, 1500747, 1401549, 1372423, 1270645, 1255799, 1255792, 1255789, 1255787, 1255782, 1255750 | |||||
2022-04-05 | 49989: Single byte versions of nice quoting. | Peter Stephenson | 1 | -4/+2 | |
Align interfaces for "nice" printing of characters with those for multibyte to make more available in single-byte compilation. | |||||
2022-03-30 | 49820: Fix a crash when completing with combination of -Q and braces | Mikael Magnusson | 1 | -3/+4 | |
minimal reproducer .zshrc: zstyle ':completion:*' completer _oldlist _complete setopt nolistambiguous autoload compinit; compinit compdef _foo foo;_foo() { compadd -Q -- stash@{{0,1}} } | |||||
2021-04-06 | 48391: fix display problem in menu-complete | Jun-ichi Takimoto | 1 | -1/+1 | |
Take account of the trailing file type character even when '-d disp' is given to compadd. | |||||
2020-01-09 | 45269: Fix misspellings in completions and elsewhere. | Jens Schleusener | 1 | -1/+1 | |
2016-11-21 | 39981: Make compstate[to_end] skip suffix and hidden suffix, but not ignored ↵ | Daniel Shahaf | 1 | -0/+4 | |
suffix. Motivated by 39930. | |||||
2016-10-18 | 39590: zle: Call zle-line-pre-redraw after inserting a completion result | m0viefreak | 1 | -0/+1 | |
This is necessary to make sure redrawhook() is called while cycling results in menu completion. | |||||
2015-06-29 | 35627: make reverse-menu-complete start with the last match in | Oliver Kiddle | 1 | -53/+30 | |
menu selection | |||||
2015-01-18 | 34322: bug with interface to parsestr() etc. | Peter Stephenson | 1 | -1/+2 | |
Was showing up in places like ${(e)...} where command substitution could reallocate the token string, but actually there was never any guarantee that the lexer wouldn't do that, so this was always a bit iffy. | |||||
2015-01-06 | 34121: compresult: Remove unneeded NULL check | Mikael Magnusson | 1 | -1/+1 | |
The variable is set to if NULL at the start of the function, and derefed on the previous line. Found by Coverity (Issue 1255843). | |||||
2014-12-11 | 33876: etc.: Separate errors and keyboards interrupts | Peter Stephenson | 1 | -1/+1 | |
Combination of 12 commits from interrupt_abort branch. Basic strategy is to introduce bits to errflag and to set and reset them separately. Remove interrupt status on return to main keymap. Turn off ERRFLAG_INT for always block. Restore bit thereafter: we probably need a new variable in order to allow user interrupts to be reset in the always block. Add TRY_BLOCK_INTERRUPT This works the same as TRY_BLOCK_ERROR, but for a SIGINT, too. Ensure propagation of SIGINT from exited job. If received by foreground job, shell uses ERRFLAG_INT, not ERRFLAG_ERROR, to set the new state. Reset errflag before precmd() Add always block in _main_completion to fix ZLS_COLORS Ensures we get the right state of $ZLS_COLORS at the end of _main_complete even if there's an interrupt. However, the "right state" is a bit messy as it depends on styles. | |||||
2014-03-23 | m0viefreak: users/18655,18657,18660: assorted auto-removable suffix fixes | m0viefreak | 1 | -1/+1 | |
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 | |||||
2011-05-14 | 29267: add -enable-zsh-debug and use for debugging completion matcher groups | Peter Stephenson | 1 | -6/+73 | |
2011-05-09 | 29165: use term.h globally if needed at all. | Peter Stephenson | 1 | -34/+39 | |
2011-02-18 | 28772: Update regions in region highlight dynamically | Peter Stephenson | 1 | -2/+7 | |
2010-08-15 | 28167: reset more variables on invalidating completion list | Peter Stephenson | 1 | -0/+2 | |
2009-04-24 | 26876 with updated documentation: add ZLE_{REMOVE,SPACE}_SUFFIX_CHARS | Peter Stephenson | 1 | -4/+4 | |
2009-01-13 | Back off 26270 (accept-and-menu-complete). | Peter Stephenson | 1 | -13/+11 | |
Was causing memory corruption | |||||
2009-01-09 | 26270: allow accept-and-menu-complete work with _vallues as well | Andrey Borzenkov | 1 | -11/+13 | |
2008-05-07 | 24959: crash with ^D in compctl | Peter Stephenson | 1 | -6/+6 | |
2008-04-13 | 24808: initial support for combining characters in zle | Peter Stephenson | 1 | -6/+6 | |
2008-02-14 | 24551: Free heap memory after every ZLE command | Peter Stephenson | 1 | -0/+1 | |
2007-08-22 | 23794: fix crash completing on "foo$" (quotes significant) | Peter Stephenson | 1 | -1/+1 | |
2007-05-28 | 23478: crash in reverse-menu-complete if no completion | Peter Stephenson | 1 | -0/+3 | |
2006-10-30 | 22924: a couple more metafy_line()/unmetafy_line() problems | Peter Stephenson | 1 | -2/+11 | |
2006-10-30 | obscure crash with hasbrpsfx() | Peter Stephenson | 1 | -2/+12 | |
2006-10-07 | 22831: use CM_SPACE in compdescribe | Andrey Borzenkov | 1 | -4/+0 | |
2006-10-06 | 22820: this time, fix handling of long accumulated completion line | Peter Stephenson | 1 | -2/+2 | |
2006-10-06 | 10791: fix handling of long accumulated completion line | Peter Stephenson | 1 | -1/+1 | |
2006-08-11 | 22599: use wide character widths in completion | Peter Stephenson | 1 | -14/+23 | |
2006-08-09 | 22594: Attempt to fix some off-by-one errors for completion lists | Peter Stephenson | 1 | -0/+1 | |
that exactly fit the display width | |||||
2006-08-01 | 22575: multibyte fixes for bslashquote(), getzlequery() | Peter Stephenson | 1 | -1/+1 | |
2006-03-07 | Changed some structures to avoid gcc's type-punned warnings. | Wayne Davison | 1 | -1/+1 | |
2005-11-15 | Got rid of some unsigned-char/char pointer casts. | Wayne Davison | 1 | -5/+5 | |
2005-11-07 | users/9638: tweaks for FCEDIT etc. | Peter Stephenson | 1 | -8/+22 | |
21986: rewrite completion suffixes for wide characters | |||||
2005-10-28 | 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT; | Peter Stephenson | 1 | -4/+4 | |
use multibyte versions of nicechar wherever possible. | |||||
2005-09-29 | 21784: Improved character widths for formatted multibyte character output | Peter Stephenson | 1 | -2/+10 | |
2005-08-18 | 21664: unmetafy ztat() argument | Andrey Borzenkov | 1 | -11/+17 | |
2005-08-10 | 21596: fix run-help, which-command, accept-and-menu-complete | Peter Stephenson | 1 | -6/+14 | |
2005-08-10 | c.f. 21590: metafy_line()/unmetafy_line() now support wide characters | Peter Stephenson | 1 | -127/+148 | |
2005-04-22 | 20162: in printlist() don't output new line if we haven't printed anything | Geoff Wing | 1 | -4/+3 | |
2005-01-14 | c.f. 20675: improve zle as a basis for Unicode. | Peter Stephenson | 1 | -123/+123 | |
unposted: update version to 4.2.3-dev-1 | |||||
2004-07-12 | unposted: improve 20150 by setting pointer to NULL | Peter Stephenson | 1 | -0/+3 | |
2004-07-11 | 20149: improve prompt-reset code | Peter Stephenson | 1 | -0/+3 | |
20150: commit ancient memory leak fix(?) in completion | |||||
2004-06-02 | Marked unused parameters with the new UNUSED() macro. | Wayne Davison | 1 | -5/+5 | |
2004-03-05 | 19474: fix a calculation when displaying completions which are | Geoff Wing | 1 | -2/+2 | |
screen width or multiples of that wide, and ALWAYS_LAST_PROMPT | |||||
2003-02-06 | 18191: from Greg Klanderman: compctl -y didn't respect list arrangement | Peter Stephenson | 1 | -0/+7 | |
options listpacked and listrowsfirst. | |||||
2003-01-13 | 18059: allow compadd -r and -R with default space suffix | Peter Stephenson | 1 | -1/+1 | |
2002-07-30 | make sure invalidatelist() isn't called hwen we are inside menu selection ↵ | Sven Wischnowsky | 1 | -1/+1 | |
and there's only one match left (17489) |