Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 24861 (with tweaks): logic to use alternative wcwidth() if needed; | Peter Stephenson | 2008-04-22 | 1 | -1/+1 |
| | | | | slightly improve test for overwriting with combining characters. | ||||
* | 24816: some places where we need cursor alignment with combining characters | Peter Stephenson | 2008-04-14 | 1 | -4/+1 |
| | |||||
* | 24810: ensure combining character alignment on unmetafication | Peter Stephenson | 2008-04-14 | 1 | -0/+8 |
| | |||||
* | 24808: initial support for combining characters in zle | Peter Stephenson | 2008-04-13 | 1 | -9/+9 |
| | |||||
* | 24542: fix RC_QUOTES completion if opening quote not at start of string | Peter Stephenson | 2008-02-09 | 1 | -5/+10 |
| | |||||
* | 23900: Better handling of NO_EQUALS in old completion | Peter Stephenson | 2007-10-03 | 1 | -0/+7 |
| | |||||
* | 23809: expand $'...' in completion word | Peter Stephenson | 2007-08-30 | 1 | -1/+84 |
| | |||||
* | 23488: tidy up module interface and documentation | Peter Stephenson | 2007-05-29 | 1 | -1/+1 |
| | |||||
* | see 23479: add initial features support for modules | Peter Stephenson | 2007-05-28 | 1 | -1/+1 |
| | |||||
* | 23246: fix completions of redirections that occur before the command word | Peter Stephenson | 2007-03-28 | 1 | -4/+15 |
| | |||||
* | 23172: typo displaying multiline explanation strings | Peter Stephenson | 2007-02-13 | 1 | -1/+2 |
| | |||||
* | Fixed the error checking of mbrtowc() since its return vlaue can never | Wayne Davison | 2007-01-26 | 1 | -1/+1 |
| | | | | be < 0 -- it returns MB_INVALID, (size_t)-1, which is a positive value. | ||||
* | 23118: improve sorting to make it work with locales | Peter Stephenson | 2007-01-21 | 1 | -11/+9 |
| | |||||
* | 23036: three more fixes for completion using $'...' | Peter Stephenson | 2006-12-08 | 1 | -0/+10 |
| | |||||
* | Incomplete improvements for $'...' in completion | Peter Stephenson | 2006-12-03 | 1 | -14/+36 |
| | |||||
* | 22950: fix reverse-menu-complete as start of completion | Peter Stephenson | 2006-11-02 | 1 | -2/+8 |
| | |||||
* | 22911: use QT_BACKSLASH if instring is QT_NONE | Peter Stephenson | 2006-10-25 | 1 | -1/+2 |
| | |||||
* | 22819: improved internal use of string quotation, | Peter Stephenson | 2006-10-05 | 1 | -26/+72 |
| | | | | plus completion bug fix with RCQUOTES | ||||
* | 22713: word end in math completion context was screwy | Peter Stephenson | 2006-09-15 | 1 | -1/+1 |
| | |||||
* | 22651: failed to unmetafy bytes for output | Peter Stephenson | 2006-08-20 | 1 | -4/+16 |
| | |||||
* | 22643: completing in math context | Peter Stephenson | 2006-08-20 | 1 | -0/+2 |
| | |||||
* | 22599: use wide character widths in completion | Peter Stephenson | 2006-08-11 | 1 | -9/+18 |
| | |||||
* | 22597: back off two column-subtraction hunks | Peter Stephenson | 2006-08-10 | 1 | -1/+6 |
| | |||||
* | 22594: Attempt to fix some off-by-one errors for completion lists | Peter Stephenson | 2006-08-09 | 1 | -1/+2 |
| | | | | that exactly fit the display width | ||||
* | rationalise mb<->wc conversions to use restartable form | Peter Stephenson | 2006-08-03 | 1 | -5/+9 |
| | |||||
* | 22575: multibyte fixes for bslashquote(), getzlequery() | Peter Stephenson | 2006-08-01 | 1 | -1/+1 |
| | |||||
* | 22544: Improve use of ztype tests for multibyte characters. Add | Peter Stephenson | 2006-07-10 | 1 | -34/+70 |
| | | | | | POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names. | ||||
* | 22474: use variable argument lists to improve error message handling | Peter Stephenson | 2006-05-30 | 1 | -1/+1 |
| | |||||
* | Changed some structures to avoid gcc's type-punned warnings. | Wayne Davison | 2006-03-07 | 1 | -3/+3 |
| | |||||
* | Call makecommaspecial() when we notice we're completing inside | Wayne Davison | 2006-02-13 | 1 | -0/+5 |
| | | | | an open brace list. | ||||
* | - Use "mbs" for the multi-byte state variable name (for consistency). | Wayne Davison | 2006-01-12 | 1 | -5/+5 |
| | | | | | - Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively). | ||||
* | The return value of mbrtowc() is a size_t (unsigned), so don't | Wayne Davison | 2006-01-11 | 1 | -5/+7 |
| | | | | | 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. | ||||
* | Got rid of two unneeded "(char *)" casts. | Wayne Davison | 2005-11-18 | 1 | -2/+2 |
| | |||||
* | Changed zlemetaline into a normal char pointer, not unsigned char. | Wayne Davison | 2005-11-15 | 1 | -39/+35 |
| | | | | Got rid of some unsigned-char/char pointer casts. | ||||
* | 21971: multibyte version of pfxlen() | Peter Stephenson | 2005-11-01 | 1 | -1/+43 |
| | |||||
* | - Changed a couple pointers from "char *" to "unsigned char *" in | Wayne Davison | 2005-11-01 | 1 | -19/+16 |
| | | | | | order to match the zlemetaline's type. - A few brace-position twiddles. | ||||
* | 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT; | Peter Stephenson | 2005-10-28 | 1 | -5/+5 |
| | | | | use multibyte versions of nicechar wherever possible. | ||||
* | 21871: replace INULL() by inull() | Peter Stephenson | 2005-10-13 | 1 | -3/+3 |
| | |||||
* | 21784: Improved character widths for formatted multibyte character output | Peter Stephenson | 2005-09-29 | 1 | -4/+4 |
| | |||||
* | 21596: fix run-help, which-command, accept-and-menu-complete | Peter Stephenson | 2005-08-10 | 1 | -0/+2 |
| | |||||
* | c.f. 21590: metafy_line()/unmetafy_line() now support wide characters | Peter Stephenson | 2005-08-10 | 1 | -174/+245 |
| | |||||
* | 21541: remove some warnings from ZLE_UNICODE_SUPPORT | Peter Stephenson | 2005-07-28 | 1 | -0/+10 |
| | |||||
* | users/8856, users/8863: which-command stuff | Peter Stephenson | 2005-05-23 | 1 | -1/+4 |
| | |||||
* | 20854: more Unicode stuff. | Peter Stephenson | 2005-02-23 | 1 | -2/+11 |
| | |||||
* | Andrej: 20838: get ZLE_UNICODE_SUPPORT basically working | Peter Stephenson | 2005-02-22 | 1 | -4/+4 |
| | |||||
* | 20828: typos in 20822 | Peter Stephenson | 2005-02-18 | 1 | -1/+1 |
| | |||||
* | 20822: Initial code for Unicode/multibyte input | Peter Stephenson | 2005-02-18 | 1 | -1/+16 |
| | | | | 20823: Debugging test in stat wrong for 64-bit systems | ||||
* | c.f. 20675: improve zle as a basis for Unicode. | Peter Stephenson | 2005-01-14 | 1 | -151/+158 |
| | | | | unposted: update version to 4.2.3-dev-1 | ||||
* | * 20657: Src/Zle/zle_tricky.c: sort completions partially based on ↵ | Clint Adams | 2005-01-11 | 1 | -0/+4 |
| | | | | LC_COLLATE setting. | ||||
* | Marked unused parameters with the new UNUSED() macro. | Wayne Davison | 2004-06-02 | 1 | -7/+7 |
| |