Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-05-12 | 25006, 25009: fix "or" orphaned symlink highlighting | Peter Stephenson | 1 | -33/+46 | |
fix ordering of statd versus extension and pattern highlight tests | |||||
2008-05-06 | 24951: implement ZLS_COLORS ln=target | Peter Stephenson | 1 | -28/+62 | |
2008-04-22 | 24861 (with tweaks): logic to use alternative wcwidth() if needed; | Peter Stephenson | 1 | -1/+1 | |
slightly improve test for overwriting with combining characters. | |||||
2008-04-20 | 24853: use metafied strings for inner loops over history | Peter Stephenson | 1 | -24/+7 | |
2008-04-20 | 24851: support colour codes for from current GNU ls | Andrey Borzenkov | 1 | -17/+39 | |
2008-04-13 | 24808: initial support for combining characters in zle | Peter Stephenson | 1 | -6/+6 | |
2008-03-28 | 24777: bug clearing up after menu selection | Peter Stephenson | 1 | -1/+10 | |
2008-02-28 | 24672: fix(?) crash resizing window during menu-select | Peter Stephenson | 1 | -3/+7 | |
2008-02-15 | 24554: reduce accumulated memory listing in completion listing | Peter Stephenson | 1 | -200/+219 | |
make file static be used as such instead of as a pretend parameter | |||||
2007-08-30 | 23807: fix interactive completion mode | Peter Stephenson | 1 | -0/+10 | |
2007-07-06 | 23665: autoloading of module features and related tweaks | Peter Stephenson | 1 | -4/+5 | |
2007-05-28 | see 23479: add initial features support for modules | Peter Stephenson | 1 | -2/+25 | |
2007-04-17 | users/11421: %{...%} was broken in completion listings | Peter Stephenson | 1 | -4/+2 | |
2007-04-02 | 23258: fix debugging added in 23248 | Peter Stephenson | 1 | -1/+2 | |
2007-03-30 | unposted: better fix for complist line wrap from 23248 | Peter Stephenson | 1 | -4/+5 | |
2007-03-29 | 23248: Completion listing problem with lines nearly screen width | Peter Stephenson | 1 | -0/+6 | |
If compiled with debug send dputs() output to $ZSH_DEBUG_LOG if defined. | |||||
2007-02-06 | unposted: uninitialised variable could result from 23144 | Peter Stephenson | 1 | -1/+1 | |
2007-02-02 | 23144: Felix Eckhofer <felix@tribut.de>: NULL pointer in complist.c | Peter Stephenson | 1 | -0/+3 | |
2006-10-30 | 22924: a couple more metafy_line()/unmetafy_line() problems | Peter Stephenson | 1 | -0/+2 | |
2006-09-21 | 22753: minor character bugs spotted on Cygwin | Peter Stephenson | 1 | -2/+2 | |
2006-08-20 | 22651: failed to unmetafy bytes for output | Peter Stephenson | 1 | -3/+13 | |
2006-08-17 | 22612: comment the static variables | Peter Stephenson | 1 | -3/+83 | |
2006-08-15 | 22611: bug scrolling wide completion list | Peter Stephenson | 1 | -5/+1 | |
2006-08-14 | 22605: bug in complist wide character fixes introduced infinite loop | Peter Stephenson | 1 | -0/+2 | |
2006-08-11 | 22599: use wide character widths in completion | Peter Stephenson | 1 | -24/+49 | |
2006-08-10 | 22597: back off two column-subtraction hunks | Peter Stephenson | 1 | -2/+6 | |
2006-08-10 | 22595: paranoid bounds-checking on some | Bart Schaefer | 1 | -9/+9 | |
loop indices. | |||||
2006-08-09 | 22594: Attempt to fix some off-by-one errors for completion lists | Peter Stephenson | 1 | -7/+32 | |
that exactly fit the display width | |||||
2006-08-07 | unposted: badly positioned declaration in complist.c | Peter Stephenson | 1 | -1/+3 | |
2006-08-07 | 22589: bug with long lines in menu selection | Peter Stephenson | 1 | -0/+4 | |
2006-08-03 | rationalise mb<->wc conversions to use restartable form | Peter Stephenson | 1 | -1/+4 | |
2006-05-30 | 22474: use variable argument lists to improve error message handling | Peter Stephenson | 1 | -2/+1 | |
2006-01-13 | Got rid of some superfluous STOUC() calls (such as the ones I added | Wayne Davison | 1 | -1/+1 | |
for the arg of calls to nicechar(), which doesn't need this). | |||||
2006-01-12 | - When mbrtowc() returns -2 when given all the remaining chars in a | Wayne Davison | 1 | -9/+11 | |
string, set an end-of-line flag and avoid calling mbrtowc() again for any of the incomplete characters that remain in the string. - Use "mbs" for the multi-byte state variable name (for consistency). - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively). | |||||
2006-01-11 | Tweaked the code to handle mbrtowc() converting '\0' the same way as | Wayne Davison | 1 | -11/+20 | |
the other callers do. Also, changed the variable name to 'cnt'. | |||||
2006-01-09 | The return value of mbrtowc() is a size_t (unsigned), so don't | Wayne Davison | 1 | -15/+10 | |
assign it to an int and then check if it's > 0, as that won't work on a system where an int is larger than a size_t. Also, we needed to use STOUC() on a char value passed to nicechar(), and we need to clear the mbstate_t object if mbrtowc() returns an error. | |||||
2005-12-10 | 22069: completion listings didn't get unmetafied | Peter Stephenson | 1 | -7/+9 | |
2005-11-15 | Got rid of some unsigned-char/char pointer casts. | Wayne Davison | 1 | -19/+17 | |
2005-10-28 | 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT; | Peter Stephenson | 1 | -3/+3 | |
use multibyte versions of nicechar wherever possible. | |||||
2005-10-13 | 21870: bad INULL() definition | Peter Stephenson | 1 | -1/+1 | |
21869: multibyte characters in %-substitutions, invalid multibyte characters in completion listings | |||||
2005-10-04 | 21821, 21822: fix two infinite loops | Bart Schaefer | 1 | -2/+8 | |
2005-10-02 | minor tidy-ups | Peter Stephenson | 1 | -1/+2 | |
2005-09-29 | 21784: Improved character widths for formatted multibyte character output | Peter Stephenson | 1 | -54/+128 | |
2005-09-27 | 21769: fix some consequences of 21730 in completion lists | Peter Stephenson | 1 | -2/+4 | |
2005-08-10 | 21593: character arrays wrongly declared with ZLE_UNICODE_SUPPORT | Peter Stephenson | 1 | -1/+1 | |
2005-08-10 | 21592: browsing new directory from menu selection crashed | Peter Stephenson | 1 | -0/+3 | |
2005-08-10 | c.f. 21590: metafy_line()/unmetafy_line() now support wide characters | Peter Stephenson | 1 | -58/+76 | |
2005-04-24 | Optimise length calculations for ${...//.../...} | Peter Stephenson | 1 | -2/+2 | |
2005-02-24 | 20861: Fix statusline in Unicode, apart from isearch | Peter Stephenson | 1 | -16/+33 | |
2005-02-23 | 20856: use VARARR for multibyte string. | Peter Stephenson | 1 | -1/+2 | |