about summary refs log tree commit diff
path: root/Completion/Core
Commit message (Collapse)AuthorAgeFilesLines
* add `services', allowing easier re-use of (parts of) completion functions ↵Sven Wischnowsky2001-01-155-25/+73
| | | | (13346)
* ALL_EXPORT tweaks.Bart Schaefer2000-11-251-0/+1
|
* aloow value `pattern' for insert-unambiguous style to preserve patterns in ↵Sven Wischnowsky2000-11-082-36/+102
| | | | the original string; add list-suffixes style to make file completion list path suffixes if possible; slightly improved completion of pathnames with multiple pattern-components (13128)
* Use bareglobqual.Bart Schaefer2000-11-051-0/+1
|
* change some tags used in filename completion: no tag for file-sort, ↵Sven Wischnowsky2000-10-231-4/+4
| | | | fake-files and ignore-parents, paths for accept-exact (13037)
* simplify setting standard completion system options using $_comp_options (13036)Sven Wischnowsky2000-10-192-2/+17
|
* 3.1.6-dev-7 zsh-3.1.9-dev-7Peter Stephenson2000-10-171-2/+2
|
* remove possibility for func() entries in tag-order style, can be done using ↵Sven Wischnowsky2000-10-122-24/+0
| | | | zstyle -e (12974)
* rename fake style to fake-files (12973)Sven Wischnowsky2000-10-121-1/+1
|
* add _all_matcher completer and supporting C-code for adding a special match ↵Sven Wischnowsky2000-10-112-8/+43
| | | | representing all other matches; remove completions style from _expand(|_word) (12960)
* follow-up to 12942, only a missing redirection (12948)Sven Wischnowsky2000-10-101-23/+5
|
* *** empty log message ***Sven Wischnowsky2000-10-101-3/+18
|
* temporarily remove global aliases to avoid error message inside the evals ↵Sven Wischnowsky2000-10-101-4/+22
| | | | (12942)
* more option setting cleanup; remove some unnecessary setopts, remove N ↵Sven Wischnowsky2000-10-062-5/+2
| | | | qualifiers (12917)
* Other places where `unsetopt cshnullglob' is needed.Bart Schaefer2000-10-061-2/+2
|
* unset cshnullglob (12899)Sven Wischnowsky2000-10-051-2/+2
|
* complete after autoloaded directories (a rather ugly hack); remove old code ↵Sven Wischnowsky2000-10-052-1/+5
| | | | in _files (comma separated patterns); improve docs for fake style and for comma separated qualifier lists (12892)
* Fiddle with _expand_word and its doc.Bart Schaefer2000-09-211-1/+0
|
* fixes for completion in math contexts (12592)Sven Wischnowsky2000-08-111-1/+1
|
* add -g option to _parameters to restrict type of parameters completed (12583)Oliver Kiddle2000-08-101-2/+9
|
* more fixes for completion of special characters (quoting) (12565)Sven Wischnowsky2000-08-082-7/+26
|
* quotingSven Wischnowsky2000-08-034-5/+5
|
* one more problem with quoting of glob characters in filename completion (12496)Sven Wischnowsky2000-08-031-0/+1
|
* if compcontext is an assoc, the keys are the completions and the values are ↵Sven Wischnowsky2000-08-021-1/+12
| | | | their descriptions (12483)
* make $compcontext more powerful and easier to use for simple casesSven Wischnowsky2000-08-011-3/+63
|
* Add compaudit to .distfiles; 3.1.9-dev-4 zsh-3.1.9-dev-4Peter Stephenson2000-07-311-1/+1
|
* fix a bug that started menu selection too often; fix bug for `yes=long' and ↵Sven Wischnowsky2000-07-271-1/+3
| | | | document it (12405)
* don't hide possible completions if there is only one and at the same time ↵Sven Wischnowsky2000-07-271-1/+1
| | | | messages are shown (12394)
* Belatedly fold in 12162, to replace command subst with eval.Bart Schaefer2000-07-262-6/+7
|
* Move compinit security checks into compaudit.Bart Schaefer2000-07-262-55/+149
|
* optimisations for _multi_parts (12354)Sven Wischnowsky2000-07-241-43/+30
|
* fix for _arguments with single-letter options: recognize option-strings with ↵Sven Wischnowsky2000-07-131-1/+3
| | | | multiple options; in _main_complete stop trying completers when one called _message, don't display warnings in such cases (12241)
* 12231: fix compinstall list-prompt settingPeter Stephenson2000-07-121-8/+6
|
* 12227: select-prompt handled by compinstallPeter Stephenson2000-07-121-3/+25
|
* don't start menu selection with only select=long (12226)Sven Wischnowsky2000-07-121-10/+16
|
* avoid insertion of `+' before ~1/<TAB>; don't use undeclared local $tmp (12208)Sven Wischnowsky2000-07-101-8/+10
|
* 12160: Cause compdump to fail early if it won't be able to write the file.Bart Schaefer2000-07-041-0/+2
|
* add some $(print...)s because of possible math-parse errors (12156)Sven Wischnowsky2000-07-042-6/+5
|
* 12148: Don't merge display-ordering glob flags into the parens of $(...).Bart Schaefer2000-07-031-6/+6
|
* 12140: make key rebinding for _expand complter easierPeter Stephenson2000-07-032-6/+17
|
* change format style with warnings tag, don't add descriptions as matches; ↵Sven Wischnowsky2000-07-031-16/+10
| | | | make a-a-i-n-h in menu selection work even without matches (12134)
* 12133: Protect completion system from stray error output and assorted fatalBart Schaefer2000-07-022-3/+3
| | | | errors when expanding strings taken from the command line.
* reverse meaning of yes=num again (12122)Sven Wischnowsky2000-06-291-25/+23
|
* try to return the right value (12119)Sven Wischnowsky2000-06-292-0/+2
|
* don't expand partially typed parameter expansions (12118)Sven Wischnowsky2000-06-291-3/+5
|
* change suffix style to still do expansion if the suffix contains something ↵Sven Wischnowsky2000-06-291-1/+1
| | | | to expand (12115)
* even more fun with the menu style (no=num, yes=long-list, reverse meaning of ↵Sven Wischnowsky2000-06-291-9/+28
| | | | yes=num) (12114)
* quote brace-strings (12113)Sven Wischnowsky2000-06-291-2/+3
|
* make _complete return the right value (12109)Sven Wischnowsky2000-06-281-10/+9
|
* fix for list-colors handling (12107)Sven Wischnowsky2000-06-281-1/+1
|