summaryrefslogtreecommitdiff
path: root/Completion/Zsh
AgeCommit message (Collapse)AuthorFilesLines
2025-04-14_typeset: fix typoMikael Magnusson1-1/+1
2025-04-0453449: do not complete indices for empty array subscriptsKyle Andelin1-0/+3
2025-02-1353358: adapt completion to reflect 53348 and extend exclusion lists to cover ↵Oliver Kiddle1-28/+28
more + options
2025-01-3053338: complete typeset -n optionOliver Kiddle1-27/+34
2025-01-02unposted: _zparseopts: update per workers/53260dana1-0/+2
2024-08-3153056: new zsh/random module defining an SRANDOM parameter and zrand_float() ↵Clinton Bunch1-1/+1
and zrand_int() math functions
2024-08-3153057: complete glob qualifiers following an equals expansionOliver Kiddle1-1/+9
2024-04-0152859: use _date_formats for fc and complete -m/-M for varedOliver Kiddle2-1/+3
2024-03-0552646: extend support for highlight groups to completion explanation strings ↵Oliver Kiddle1-8/+13
and WATCHFMT
2024-02-2852594: support for POSIX real-time signals with kill and trapOliver Kiddle1-4/+5
Also add new -L option to kill for a more verbose listing of signals
2023-12-0552326, 52372: add -q option to kill for sigqueueOliver Kiddle1-0/+1
2023-11-08github #105: add "-I" for "zle" completionShotaro Aoyama1-0/+1
2023-09-2051980: Add glob qualifier grouping operator to completionAtte Peltomäki1-0/+1
Also improve wording in documentation to make glob qualifier grouping easier to find by explicit use of terms 'logical OR' and 'logical AND'.
2023-09-1552142: Move _history_modifiers call to _parameterMikael Magnusson2-5/+5
_parameters is used in many contexts, like assignments in command position, assignment after typeset, etc, where history modifiers are not valid. _brace_parameter already calls _history_modifiers explicitly so this seems more in line with that.
2023-06-06Protect some :s from history modifier expansionStephane Chazelas1-1/+1
2023-05-2151761: Use zstyle verbose for _parameters descriptionsMarlon Richert1-1/+1
According to the manual, extra-verbose means "more verbose at the cost of a probable decrease in completion speed". That's not the case here.
2023-05-2151759: Show alias values in command completionsMarlon Richert1-2/+8
Show the value of each alias when descriptions are shown. Enabled by default.
2023-05-2151758: Make dynamic dir completion easier to implementMarlon Richert1-8/+22
2023-02-2451470 (tweaked, c.f. 51476): Separate cdpath elements in path-directories ↵Sebastian Stark1-2/+9
completion
2023-01-11unposted: mention attributes changes, fix renumbering mistake and allow ↵Oliver Kiddle1-1/+1
completion to offer prompt escapes for PROMPT_EOL_MARK
2022-07-2450421: add context as the 1st arg to _dispatchJun-ichi Takimoto1-1/+2
2022-05-30Marlon Richert: 50307 (cf. PWS 50205): suffix aliases should not collide ↵Bart Schaefer1-0/+1
with directory names when completing
2022-04-0349959: _brace_parameter: add (-)Mikael Magnusson1-1/+2
2022-04-02unposted (see 48073): _fc: Complete new -s optiondana1-1/+2
2022-03-3149932: Update _brace_parameter # descriptionMatthew Martin1-1/+1
2021-12-1649648 based on github #80 (Vincent Bernat): invert before/since for date ↵Oliver Kiddle1-5/+3
glob qualifiers completion
2021-12-1349643: facilitate use of the fake style by always calling _description with ↵Oliver Kiddle1-4/+8
the executables tag for command names Also allow the command-path style to include relative directories.
2021-10-3049528: allow multiple -D options to compaddOliver Kiddle1-1/+1
2021-09-0849389: leading variables in autoload file completionBart Schaefer1-2/+2
2021-09-0648969: fix for "zle -N" completionMarlon Richert1-4/+4
2021-08-27unposted (based on Marlon: 49273): add -x to local completionOliver Kiddle1-2/+2
2021-07-3049211: _typeset: correctly set return valueJun-ichi Takimoto1-14/+15
do not include '-' in onopts so that 'functions -- <TAB>' works.
2021-07-0949151: remove commas erroneously included in _arguments exclusion listsOliver Kiddle1-10/+10
2021-07-0949150: consistently use singular form for headings on completion match groupsOliver Kiddle10-19/+19
2021-05-2148864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert1-5/+9
values
2021-05-1548710: histed + other zed updatesBart Schaefer1-5/+11
2021-04-19Add -L to add-(zsh|zle)-hook[-widget] completionMarlon Richert2-6/+12
…and hide mutually exclusive options.
2021-04-1748361 (+ 48368 review comments): __arguments: New completion function for ↵Daniel Shahaf1-0/+44
_arguments. In the penultimate paragraph of the comment, the two possibilities for the relative path cover three cases: - The comment is read in the source tree - The comment is read in an installed tree with --enable-function-subdirs - The comment is read in an installed tree with --disable-function-subdirs Review-by: Matthew Martin Review-by: Oliver Kiddle
2021-04-1648513: Let extra-verbose completion show parameter valuesMarlon Richert1-14/+30
2021-04-0948378: complete compadd options for other completion functionsOliver Kiddle1-37/+84
2021-03-2947737: _zstyle: Fix option completion when positional arguments are already ↵dana1-2/+2
present (regression from workers/39659 (commit ae3b675ce6e4ac62451ea08169c2b4dc45cf533b)) The following case: LBUFFER='zstyle -' RBUFFER=' foo bar' Before this patch, completed 'context pattern' (from the first positional argument). With this patch, completes options, which is correct.
2021-02-13github #68: support section suffix completion for man pagestaiyu1-0/+6
Support prepend and suffix values for insert-sections Add values for insert-sections for zstyle completion
2021-02-0747929: complete newer possible values for the sort styleOliver Kiddle1-1/+5
2021-01-2747873: Improve completion within dynamic directory namesPeter Stephenson1-1/+3
2020-10-2547494, 47495: Add -n option to strftimeMikael Magnusson1-5/+7
2020-09-1347364: Enable extendedglob in pattern with ${(*)name/pattern/replacement}Bart Schaefer1-0/+1
Mikael Magnusson: 47382: Completion for 47364
2020-09-06unposted: remove periods from completion descriptionsDoug Kearns1-1/+1
As per the completion-style-guide recommendations.
2020-08-1647306: edit-command-line: add editor styleMikael Magnusson1-0/+1
2020-08-1647304: _globflags: support specifying more than one flag where appropriateMikael Magnusson1-9/+24
2020-07-14github #61: _parameters: Don't leak the variable $ioxiedi1-1/+1