summaryrefslogtreecommitdiff
path: root/Src/Zle/complete.c
AgeCommit message (Collapse)AuthorFilesLines
2002-04-24fix two memory leaks (found by Felix): pre-compiled patterns when ↵Sven Wischnowsky1-0/+1
re-defining styles and compredirs-copies in comp_wrapper() (17029)
2002-03-01add $redirections array to completion system parameters, containing ↵Sven Wischnowsky1-6/+14
information about all redirections on the line; make this and compstate[redirect] contain the file descriptor number (16751)
2001-08-24test if hash table pointer is NULL to avoid SEGV with compstate=() (15705)Sven Wischnowsky1-0/+3
2001-07-25move pattern matching in the loop to make sure all match specs are used (15487)Sven Wischnowsky1-2/+3
2001-07-25make display for groups in _describe nicer; improve packing with ↵Sven Wischnowsky1-0/+18
list_packed; leave space for type character (list_types) only in groups with at least one file name (15477)
2001-05-31fix two memory leaks (at least I hope they are fixed) and some out-of-bound ↵Sven Wischnowsky1-1/+1
array accesses, plus some defensive programming for heap allocated param structs (14605)
2001-01-11*** empty log message ***Sven Wischnowsky1-2/+28
2000-10-11add _all_matcher completer and supporting C-code for adding a special match ↵Sven Wischnowsky1-1/+4
representing all other matches; remove completions style from _expand(|_word) (12960)
2000-06-19new match spec characters bBeE, match only word/line not both (11977)Sven Wischnowsky1-8/+13
2000-06-13fixes for calling compfiles, for completing words with special characters; ↵Sven Wischnowsky1-9/+20
make compfiles optimisations work with globcomplete and simple match (sunsite isn't responding)
2000-06-02fix some memory leaks (thanks, Felix) (11722)Sven Wischnowsky1-4/+6
2000-06-02Changed the array "len" to be "end" -- a 1-relative index of the lastWayne Davison1-1/+1
item (or you can think of it as pointing one past the last item).
2000-05-31Wayne: pattern.c unitialised varPeter Stephenson1-2/+2
Zero-length arrays now possible with $array[1,0]
2000-05-23add -[ak] options to compadd (11533)Sven Wischnowsky1-0/+6
2000-05-02add -x option to compadd to display message unconditionallySven Wischnowsky1-2/+6
2000-04-27fix for parse error with left-anchored patterns (10963)Sven Wischnowsky1-1/+1
2000-04-27renamed parameters for menu selection to MENUSELECT, MENUPROMPT and ↵Sven Wischnowsky1-7/+7
MENUSCROLL; no special value for LISTMAX to turn on list scrolling, this is done by setting LISTPROMPT now; default values for LISTPROMPT and MENUPROMPT when set but empty (10959)
2000-04-26allow to anchor on gaps between strings in matching control specs (10926)Sven Wischnowsky1-1/+21
2000-04-17scrolling in completion lists and menu-selection, version1Sven Wischnowsky1-5/+6
2000-04-01Updated from list as far as 10376Peter Stephenson1-195/+241
1999-10-26Initial revisionTanaka Akira1-0/+1332