about summary refs log tree commit diff
path: root/Completion/Base
Commit message (Collapse)AuthorAgeFilesLines
* 48180: Start menu selection with select=long-list in menu styleMarlon Richert2021-03-171-1/+1
|
* github #63: fix regression caused by 44274, with sort style -o could break ↵oxiedi2021-02-071-1/+1
| | | | _values
* 47873: Improve completion within dynamic directory namesPeter Stephenson2021-01-271-2/+12
|
* 47395: _store_cache: Don't leak the variable ${_cache_dir}.Jacob Menke2020-09-221-1/+1
|
* 45895: ignore deduplication patterns in _sequenceoxiedi2020-06-261-2/+2
|
* 45730: _arguments: Add the -0 flag, which makes $opt_args be populated sanely.Daniel Shahaf2020-05-031-3/+5
| | | | Also, write/extend docstrings for sepjoin() and zjoin().
* 45130: _multi_parts: Always pass -f to compadd if given by callerdana2019-12-261-1/+1
|
* 44912: more quoting fixes in _expandWayne Davison2019-11-261-1/+1
| | | | Don't set done_quote=1 if the glob result is empty.
* unposted: fix missing local declarations in _sequenceOliver Kiddle2019-11-061-1/+1
|
* 44767: _description: Ignore -Jdana2019-10-121-2/+2
|
* 44274: allow finer control of completion match soring with compadd's -o optionOliver Kiddle2019-05-076-22/+27
|
* unposted: _pick_variant: Use ${(P) ::= rather than evalMatthew Martin2019-04-221-4/+4
|
* 44202 (tweaked): _normal: Add -P to reset precommandsMatthew Martin2019-04-041-1/+2
|
* 44201: _command_name: Check for external forcing precommandMatthew Martin2019-04-042-6/+6
|
* 44200 (tweaked): Completion: Append to precommands in _normalMatthew Martin2019-04-041-2/+3
|
* 44199: _normal: Use zparseoptsMatthew Martin2019-04-041-8/+5
|
* 44155: _pick_variant: Update builtin checkMatthew Martin2019-03-211-8/+22
|
* 43930: Improve _multi_parts performancedana2018-12-301-7/+9
|
* 43928: _alternative: Evaluate (...) action syntax as with _argumentsdana2018-12-231-1/+3
|
* 43752: Fix _expand quoting.Peter Stephenson2018-11-031-2/+12
| | | | Quoting was not applied properly if globbing failed or was not applied.
* users/23169: only expand ~[...] under the same circumstances as other ~formsPeter Stephenson2018-02-261-1/+2
|
* 42175 + 42177 + 42178: avoid localized output from external commandsJun-ichi Takimoto2017-12-282-7/+16
| | | | | | _call_program and '_arguments --' will call _comp_locale before calling external command for easier analysis of the output. This is disabled by passing an option '-l'.
* 41563: fix completion description alignment with _regex_wordsOliver Kiddle2017-08-181-9/+12
|
* 40597: be flexible about order of options to _valuesOliver Kiddle2017-03-041-3/+4
|
* 40053: exclude current directory of active zsh from _external_pwds ompletion ↵Oliver Kiddle2016-12-011-1/+1
| | | | matches
* 40035: Cosmetic fixes for comments and documentation.Eitan Adler2016-11-291-1/+1
| | | | Mostly fixes to doubled words.
* 40011: Make $_comp_priv_prefix only declared when required, and use that to ↵Daniel Shahaf2016-11-281-1/+3
| | | | have chgrp offer all groups under doas, ssh, etc as well.
* 39945: allow further tab presses to move on to menu completion even when ↵Oliver Kiddle2016-11-161-1/+2
| | | | compstate[insert] is emptied
* 39710 (cf. Alex George: 39709): handle the %o format in the "all-expansions" tagBarton E. Schaefer2016-10-222-3/+13
| | | | Also allow a single unique match to appear in the "expansions" tag of _expand in the same way as _user_expand (users/21955 commit 18200dc0)
* users/21955: add missing final colon in zstyle context lookup; allow a ↵Barton E. Schaefer2016-09-211-2/+2
| | | | single unique match to appear in "expansions" tag
* 39333: include name of command used to gain priviliges in context for ↵Oliver Kiddle2016-09-161-3/+6
| | | | command and gain-priviliges styles
* 39299: better Freebsd support in _external_pwds using procstatOliver Kiddle2016-09-131-1/+5
|
* 39261 (tweaked cf. Daniel: 39275): don't unconditionally elevate privileges ↵Oliver Kiddle2016-09-112-2/+10
| | | | | | | with sudo in completion functions A new gain-privileges style enables it and a _comp_priv_prefix array added for tracking how to match privileges for the current command
* 38153: change the way long options are examined for "=" signs to more ↵m0viefreak2016-09-061-8/+14
| | | | | | | | | | | accurately identify options that take arguments Note in workers/39135: The pattern in 266/268 appears to match the '=' sign even though it's in the second colon-separated field, where it doesn't denote a mandatory argument. I'm guessing the pattern match on lines 266/268 should be fixed ... This commit alters those patterns in what is hoped to be the desired way.
* 39046 + 39061: New :P history modifier.Daniel Shahaf2016-08-221-1/+1
|
* 38904: fix return status in _normal and functions erroneously using it for ↵Oliver Kiddle2016-07-211-2/+2
| | | | default completion
* 38641: allow for values which resemble compadd optionsOliver Kiddle2016-06-091-1/+1
|
* For help listing, capture the fallback to compctl in case there is one definedBarton E. Schaefer2016-04-091-1/+2
|
* 37972: Redirect stderr to /dev/null in cases where ${~param} might generate ↵Barton E. Schaefer2016-02-143-3/+3
| | | | errors
* 37215: _regex_words: Don't add mismatched parenthesesDaniel Shahaf2015-11-271-1/+7
| | | | | | | | I ran into this in the wild¹, it manifested as the following error message: zregexparse:4: not enough regex arguments ¹ https://bug.tasktools.org/browse/TW-1729
* 36841: factor out and update the patterns that filter "uninteresting" ↵Barton E. Schaefer2015-10-111-3/+6
| | | | functions out of the $funcstack display
* 36697: handle options of _arguments correctlyJun-ichi Takimoto2015-09-301-22/+23
|
* unposted (cf. 36200): back out _expand backslash handling change from 34961.Barton E. Schaefer2015-08-171-1/+1
|
* Don't require MULTI_FUNCDEF in _main_complete.Peter Stephenson2015-06-271-1/+6
| | | | Although it gets set there, _main_complete is parsed to the end first.
* 35163: move "show-ambiguity" style to _setup so that more precise context ↵Barton E. Schaefer2015-06-062-7/+13
| | | | can be applied
* 35270: _describe: Document a known issue described in 35229Daniel Shahaf2015-06-021-0/+7
| | | | (which is the same thread as 35127 and 34768)
* 35310 (plus undo 35268 (git 899613f)): fix quoting of cached arraysOliver Kiddle2015-05-301-2/+9
| | | | Also add file name reference to ChangeLog entry from rev 899613f.
* c.f. 35268: revert completion cache optimisation for nowPeter Stephenson2015-05-261-9/+2
|
* 34961: unquote history words when command line has a quoteBarton E. Schaefer2015-04-251-1/+6
|
* 34961: add backslash to alias expansion matching (related to workers/32186)Barton E. Schaefer2015-04-251-1/+1
|