about summary refs log tree commit diff
path: root/Src/Zle/compmatch.c
Commit message (Collapse)AuthorAgeFilesLines
* 33515: suppress parser error messages in comp_match()Barton E. Schaefer2014-10-221-0/+3
|
* 29165: use term.h globally if needed at all.Peter Stephenson2011-05-091-3/+3
|
* 26466: suffix in certain matcher modes mishandled patternPeter Stephenson2009-01-291-7/+10
|
* 26061: fix clash between process subst and numeric globPeter Stephenson2008-11-181-2/+1
| | | | 26062: additional compmatch change, missed from 26047
* 26047: convert lower levels of completion matching to usePeter Stephenson2008-11-151-285/+355
| | | | multibyte strings and wide characters
* 25975: bad tests for pattern match when building up a completion line stringPeter Stephenson2008-10-301-3/+11
|
* 25972: leaked and uninitialised memory found by valgrindPeter Stephenson2008-10-301-0/+1
|
* 25860: avoid possible NULL dereferencing in bld_parts.Clint Adams2008-10-121-1/+2
|
* 25638: remove unnecessary ternary expression in match_str.Clint Adams2008-09-101-1/+1
|
* 25612: remove dead code.Clint Adams2008-09-051-5/+2
|
* Mikael: 25146: export pattern_match_equivalence()Peter Stephenson2008-06-101-1/+3
|
* unposted: silence compiler in pattern_match_restrict()Peter Stephenson2008-06-091-1/+1
|
* 25138(? mailing list stuck): rewrite of completion matching.Peter Stephenson2008-06-081-109/+626
| | | | Will one day use multibyte/wide characters, doesn't yet.
* 24406: use deep copy of Cline structure to avoid recursion problemPeter Stephenson2008-01-181-2/+2
|
* 24127: bug in matcher specs with left anchor and partial wordsPeter Stephenson2007-11-281-15/+35
|
* 23693: _match completion tried to match the quoted form of filenamesPeter Stephenson2007-07-231-2/+24
|
* fix thinko in 22787Andrey Borzenkov2006-09-301-1/+2
|
* 22787: fix calling convention of pattern_matchAndrey Borzenkov2006-09-291-62/+73
|
* - When mbrtowc() returns -2 when given all the remaining chars in aWayne Davison2006-01-121-6/+6
| | | | | | | | 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).
* A test for (size_t)-1 needed to check for (size_t)-2 too.Wayne Davison2006-01-091-1/+1
|
* The return value of mbrtowc() is a size_t (unsigned), so don'tWayne Davison2006-01-091-10/+9
| | | | | | | | | | 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, the code that handled partial multibyte characters (that were assembled from multiple bytes of a metafied string) was not advancing past all the assembled bytes, nor was it handling the decoding of a '\0' char (it looks like it could have infinite looped in that case).
* 21943, 21945: ZLE_UNICODE_SUPPORT -> MULTIBYTE_SUPPORT;Peter Stephenson2005-10-281-2/+2
| | | | use multibyte versions of nicechar wherever possible.
* minor tidy-upsPeter Stephenson2005-10-021-0/+84
|
* 21402: Fix crash with case-insensitive matching.Peter Stephenson2005-07-061-4/+16
|
* 20002 -- fix for matching spec core dumpFelix Rosencrantz2004-06-041-1/+1
|
* Another fix in sub_match() to avoid allowing a partial-meta matchWayne Davison2004-02-101-4/+9
| | | | to occur (this time in the backwards scan).
* Optimized the check for a widowed Meta character.Wayne Davison2004-02-091-5/+7
|
* 19385: NULL dereference in add_match_partPeter Stephenson2004-01-201-1/+1
|
* 19336: Src/Zle/compmatch.c: Bug with metafied characters in length ofPeter Stephenson2004-01-051-1/+8
| | | | completion prefix
* Silence "might be used uninitialized" warning.Wayne Davison2001-08-081-1/+1
|
* (only the patch to compmatch.c from the mail); improve merging cline lists ↵Sven Wischnowsky2001-06-271-1/+5
| | | | coming from different IPREFIX/PREFIX combinations and such by avoiding to generate cline structs for empty parts after a match spec anchor cline struct (15123)
* (13892) fixes for fpaths and completion matchingSven Wischnowsky2001-04-031-2/+1
|
* make `_arguments -S' still complete long options after `--<TAB>'; fix for ↵ pre-func-moveSven Wischnowsky2001-04-021-1/+2
| | | | cursor positioning with partial word match specs (13868)
* another fix for completion matching, CLF_MISS in the wrong cline struct (13575)Sven Wischnowsky2001-03-061-0/+6
|
* fix for matching control, try harder to merge separately completed parts to ↵Sven Wischnowsky2001-03-051-2/+24
| | | | avoid losing user-typed characters (13565)
* fix for mergin two CLF_MID entries in cline lists (with two equal prefixes ↵Sven Wischnowsky2001-01-251-1/+1
| | | | it thought there were characters missing) (13388)
* two more fixes for completion matching and reporting interesting positions ↵Sven Wischnowsky2001-01-151-4/+4
| | | | (13349)
* fix for 13339 (report each position only once) and fixlet for matching: a ↵Sven Wischnowsky2001-01-121-0/+2
| | | | case where missing characters weren't remembered (13343)
* fix cursor positioning with partial-word match specs using `**' (13336)Sven Wischnowsky2001-01-101-26/+35
|
* two completion matching fixes; wrong (path) prefix matching (removed path ↵Sven Wischnowsky2000-10-131-5/+5
| | | | components) and reverse order of sub-strings in match-strings (12995)
* *** empty log message ***Sven Wischnowsky2000-10-101-3/+3
|
* follow-up to 12930, make it first try exact character matches, but enable it ↵Sven Wischnowsky2000-10-101-7/+30
| | | | to go back to try match specs if it fails after accepting such character matches (12941)
* prefer exact character matches over match specs (so that `nom' can match ↵Sven Wischnowsky2000-10-091-1/+10
| | | | `nomatch') (12930)
* a bit of security for a VARARR() (12314)Sven Wischnowsky2000-07-191-1/+1
|
* new match spec characters bBeE, match only word/line not both (11977)Sven Wischnowsky2000-06-191-3/+9
|
* allow completion after `a{{b,c},'; fix for closing brace re-insertion when ↵Sven Wischnowsky2000-06-161-0/+1
| | | | completing from both ends (CLF_MID) (11939)
* more security in completion matching (11924)Sven Wischnowsky2000-06-151-2/+2
|
* fixes for calling compfiles, for completing words with special characters; ↵Sven Wischnowsky2000-06-131-1/+1
| | | | make compfiles optimisations work with globcomplete and simple match (sunsite isn't responding)
* more anchor matching fixes (11817)Sven Wischnowsky2000-06-081-10/+11
|
* try to get the tests for `strings long enough' right in anchor matching code ↵Sven Wischnowsky2000-06-071-2/+4
| | | | (11796)