summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_tricky.c
AgeCommit message (Collapse)AuthorFilesLines
2011-03-2828926: No newline after the last line in listlist() when printing the listBart Schaefer1-1/+3
in a single column.
2011-02-1828772: Update regions in region highlight dynamicallyPeter Stephenson1-5/+3
2010-12-14lexsave/lexrestore lexflagsPeter Stephenson1-4/+3
add new LEXFLAGS_ZLE
2010-12-1428528: Rearrange zleparse to lexflagsPeter Stephenson1-8/+8
Add (z+n+)
2010-03-22Fix ZLE access to pushed history linePeter Stephenson1-8/+8
2009-12-0727479: prevent completions split across backslash-newlinePeter Stephenson1-22/+58
from causing too much mayhem
2009-08-15users/14307: end of command line in completion with variant zsh syntaxPeter Stephenson1-1/+9
2009-02-2026588: don't expand aliases in run-helpPeter Stephenson1-2/+1
2009-01-0526247: fix compilation with -Werror=format-securityAndrey Borzenkov1-1/+1
2008-10-1225859: avoid possible NULL dereferencing if RC_QUOTES is set.Clint Adams1-1/+1
2008-09-0825636: free s before returning with an error condition.Clint Adams1-1/+7
2008-05-1625051: add colour sequences to formatting strings in completionPeter Stephenson1-2/+27
2008-04-2224861 (with tweaks): logic to use alternative wcwidth() if needed;Peter Stephenson1-1/+1
slightly improve test for overwriting with combining characters.
2008-04-1424816: some places where we need cursor alignment with combining charactersPeter Stephenson1-4/+1
2008-04-1424810: ensure combining character alignment on unmetaficationPeter Stephenson1-0/+8
2008-04-1324808: initial support for combining characters in zlePeter Stephenson1-9/+9
2008-02-0924542: fix RC_QUOTES completion if opening quote not at start of stringPeter Stephenson1-5/+10
2007-10-0323900: Better handling of NO_EQUALS in old completionPeter Stephenson1-0/+7
2007-08-3023809: expand $'...' in completion wordPeter Stephenson1-1/+84
2007-05-2923488: tidy up module interface and documentationPeter Stephenson1-1/+1
2007-05-28see 23479: add initial features support for modulesPeter Stephenson1-1/+1
2007-03-2823246: fix completions of redirections that occur before the command wordPeter Stephenson1-4/+15
2007-02-1323172: typo displaying multiline explanation stringsPeter Stephenson1-1/+2
2007-01-26Fixed the error checking of mbrtowc() since its return vlaue can neverWayne Davison1-1/+1
be < 0 -- it returns MB_INVALID, (size_t)-1, which is a positive value.
2007-01-2123118: improve sorting to make it work with localesPeter Stephenson1-11/+9
2006-12-0823036: three more fixes for completion using $'...'Peter Stephenson1-0/+10
2006-12-03Incomplete improvements for $'...' in completionPeter Stephenson1-14/+36
2006-11-0222950: fix reverse-menu-complete as start of completionPeter Stephenson1-2/+8
2006-10-2522911: use QT_BACKSLASH if instring is QT_NONEPeter Stephenson1-1/+2
2006-10-0522819: improved internal use of string quotation,Peter Stephenson1-26/+72
plus completion bug fix with RCQUOTES
2006-09-1522713: word end in math completion context was screwyPeter Stephenson1-1/+1
2006-08-2022651: failed to unmetafy bytes for outputPeter Stephenson1-4/+16
2006-08-2022643: completing in math contextPeter Stephenson1-0/+2
2006-08-1122599: use wide character widths in completionPeter Stephenson1-9/+18
2006-08-1022597: back off two column-subtraction hunksPeter Stephenson1-1/+6
2006-08-0922594: Attempt to fix some off-by-one errors for completion listsPeter Stephenson1-1/+2
that exactly fit the display width
2006-08-03rationalise mb<->wc conversions to use restartable formPeter Stephenson1-5/+9
2006-08-0122575: multibyte fixes for bslashquote(), getzlequery()Peter Stephenson1-1/+1
2006-07-1022544: Improve use of ztype tests for multibyte characters. AddPeter Stephenson1-34/+70
POSIX_IDENTIFIERS option to control allowability of multibyte alphanumeric characters in parameter and module names.
2006-05-3022474: use variable argument lists to improve error message handlingPeter Stephenson1-1/+1
2006-03-07Changed some structures to avoid gcc's type-punned warnings.Wayne Davison1-3/+3
2006-02-13Call makecommaspecial() when we notice we're completing insideWayne Davison1-0/+5
an open brace list.
2006-01-12- Use "mbs" for the multi-byte state variable name (for consistency).Wayne Davison1-5/+5
- Use the new MB_INVALID and MB_INCOMPLETE defines for the size_t -1 and -2 values (respectively).
2006-01-11The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison1-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.
2005-11-18Got rid of two unneeded "(char *)" casts.Wayne Davison1-2/+2
2005-11-15Changed zlemetaline into a normal char pointer, not unsigned char.Wayne Davison1-39/+35
Got rid of some unsigned-char/char pointer casts.
2005-11-0121971: multibyte version of pfxlen()Peter Stephenson1-1/+43
2005-11-01- Changed a couple pointers from "char *" to "unsigned char *" inWayne Davison1-19/+16
order to match the zlemetaline's type. - A few brace-position twiddles.
2005-10-2821943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson1-5/+5
use multibyte versions of nicechar wherever possible.
2005-10-1321871: replace INULL() by inull()Peter Stephenson1-3/+3