summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_utils.c
AgeCommit message (Collapse)AuthorFilesLines
2011-02-1128671: better cursor positioning after undoPeter Stephenson1-1/+3
2010-09-2028282: new function zlecallhook()Peter Stephenson1-0/+32
fix arguments to zle-keymap-select
2010-03-2227812: display invalid bytes in multibyte characters speciallyPeter Stephenson1-12/+35
2009-01-03Greg Klanderman: 26159: fix appending of killsPeter Stephenson1-1/+1
2008-11-1526047: convert lower levels of completion matching to usePeter Stephenson1-3/+4
multibyte strings and wide characters
2008-04-24unposted: Jun T.: fix backkill() calculation of charaters to killPeter Stephenson1-8/+6
2008-04-2124860: better overwrite modePeter Stephenson1-1/+1
2008-04-2124855: tests for combining char alignment should only be on metafied linePeter Stephenson1-3/+8
2008-04-2024853: bits missed from patchPeter Stephenson1-1/+4
2008-04-2024853: use metafied strings for inner loops over historyPeter Stephenson1-2/+49
2008-04-1524819: fix transposing characters and sneaky combination generationPeter Stephenson1-1/+6
2008-04-1324808: initial support for combining characters in zlePeter Stephenson1-38/+91
2008-04-11unposted: move zlefind() and zlecmp() into zle_hist.cPeter Stephenson1-76/+0
2008-04-0324782: initial go at highlighting of characters in zle command linesPeter Stephenson1-2/+9
2008-03-06Fixed two compiler warnings about comparing signed/unsigned.Wayne Davison1-2/+2
2007-12-1724275: fixes for multibyte characters on SolarisPeter Stephenson1-0/+16
2007-04-19users/11419: zle copy-region-as-kill <string>Peter Stephenson1-6/+31
adds text to the kill ring
2006-10-3022924: a couple more metafy_line()/unmetafy_line() problemsPeter Stephenson1-18/+18
2006-10-16Add two widges for user control of auto-suffix remove/keep.Bart Schaefer1-0/+9
2006-08-03rationalise mb<->wc conversions to use restartable formPeter Stephenson1-1/+5
2006-08-0122575: multibyte fixes for bslashquote(), getzlequery()Peter Stephenson1-27/+19
2006-01-13Got rid of some superfluous STOUC() calls (such as the ones I addedWayne Davison1-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 aWayne Davison1-21/+30
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-09Changed the name of the "ret" variable in mb_niceformat() to "cnt"Wayne Davison1-8/+7
because "ret" is usually used for a variable name to hold the return value of the function. Also, changed the test when checking for a \0 to only check if "cnt" is 0, since we must always change a value of 0 to 1.
2006-01-09The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-4/+4
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().
2005-11-15Changed zlelineasstring() and zlegetline() to each return a normal charWayne Davison1-29/+25
pointer, not an unsigned char pointer. Changed stringaszleline() to take a normal char pointer for its first arg. Got rid of some unsigned-char/char pointer casts.
2005-11-01- One minor change to handle the ZLE_STRING_T change.Wayne Davison1-13/+5
- A few brace-position twiddles.
2005-10-31Fixed some compiler warnings about signed/unsigned comparisons.Wayne Davison1-2/+2
2005-10-2821943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson1-7/+7
use multibyte versions of nicechar wherever possible.
2005-10-1921890: fix segmentation error in left prompt truncation and a couple of minorPeter Stephenson1-1/+2
inconsistencies
2005-09-2921784: Improved character widths for formatted multibyte character outputPeter Stephenson1-4/+61
2005-08-1221603: wchar/multibyte conversion of cursor position when at end of linePeter Stephenson1-2/+7
2005-08-10c.f. 21590: metafy_line()/unmetafy_line() now support wide charactersPeter Stephenson1-53/+176
2005-07-2821541: remove some warnings from ZLE_UNICODE_SUPPORTPeter Stephenson1-2/+14
2005-02-2620872: fix ZS_{icntrl,tolower} vs. ZC_{incntrl,tolower} confusionAndrey Borzenkov1-2/+2
2005-02-2520869: more small Unicode tweaksPeter Stephenson1-3/+3
2005-02-2520863: fix history (i)searching for UnicodePeter Stephenson1-11/+59
2005-02-2320854: more Unicode stuff.Peter Stephenson1-39/+35
2005-02-2220845: fix mbstate_t usage in getrestcharAndrey Borzenkov1-3/+3
2005-02-22Andrej: 20838: get ZLE_UNICODE_SUPPORT basically workingPeter Stephenson1-7/+8
2005-02-1820822: Initial code for Unicode/multibyte inputPeter Stephenson1-7/+7
20823: Debugging test in stat wrong for 64-bit systems
2005-01-2620752: fix access to ZLE parametersPeter Stephenson1-4/+12
2005-01-2620750: fix hang with 20742Peter Stephenson1-2/+9
2005-01-2520742: More Unicode conversion stuff.Peter Stephenson1-80/+237
2005-01-22 * 20736: Src/Zle/zle_utils.c: change zlegetline() to return a metafied string.Clint Adams1-7/+2
2005-01-22 * 2073x: Src/Zle/zle_utils.c, Src/hist.c: modify zlegetline() and zlegetlineClint Adams1-1/+26
caller so that the octet-based and wide-character versions should return the same string.
2005-01-16 * 20718: Src/Zle/zle_utils.c: minor cleanup for proto-Unicode stuff.Clint Adams1-6/+1
2005-01-14c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson1-48/+79
unposted: update version to 4.2.3-dev-1
2004-06-02Marked unused parameters with the new UNUSED() macro.Wayne Davison1-3/+3
2004-03-12zsh-users/7160: Check and fix mod_export entries.Peter Stephenson1-1/+1