about summary refs log tree commit diff
path: root/Completion/Zsh
Commit message (Collapse)AuthorAgeFilesLines
* 52859: use _date_formats for fc and complete -m/-M for varedOliver Kiddle2024-04-012-1/+3
|
* 52646: extend support for highlight groups to completion explanation strings ↵Oliver Kiddle2024-03-051-8/+13
| | | | and WATCHFMT
* 52594: support for POSIX real-time signals with kill and trapOliver Kiddle2024-02-281-4/+5
| | | | Also add new -L option to kill for a more verbose listing of signals
* 52326, 52372: add -q option to kill for sigqueueOliver Kiddle2023-12-051-0/+1
|
* github #105: add "-I" for "zle" completionShotaro Aoyama2023-11-081-0/+1
|
* 51980: Add glob qualifier grouping operator to completionAtte Peltomäki2023-09-201-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'.
* 52142: Move _history_modifiers call to _parameterMikael Magnusson2023-09-152-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.
* Protect some :s from history modifier expansionStephane Chazelas2023-06-061-1/+1
|
* 51761: Use zstyle verbose for _parameters descriptionsMarlon Richert2023-05-211-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.
* 51759: Show alias values in command completionsMarlon Richert2023-05-211-2/+8
| | | | Show the value of each alias when descriptions are shown. Enabled by default.
* 51758: Make dynamic dir completion easier to implementMarlon Richert2023-05-211-8/+22
|
* 51470 (tweaked, c.f. 51476): Separate cdpath elements in path-directories ↵Sebastian Stark2023-02-241-2/+9
| | | | completion
* unposted: mention attributes changes, fix renumbering mistake and allow ↵Oliver Kiddle2023-01-111-1/+1
| | | | completion to offer prompt escapes for PROMPT_EOL_MARK
* 50421: add context as the 1st arg to _dispatchJun-ichi Takimoto2022-07-241-1/+2
|
* Marlon Richert: 50307 (cf. PWS 50205): suffix aliases should not collide ↵Bart Schaefer2022-05-301-0/+1
| | | | with directory names when completing
* 49959: _brace_parameter: add (-)Mikael Magnusson2022-04-031-1/+2
|
* unposted (see 48073): _fc: Complete new -s optiondana2022-04-021-1/+2
|
* 49932: Update _brace_parameter # descriptionMatthew Martin2022-03-311-1/+1
|
* 49648 based on github #80 (Vincent Bernat): invert before/since for date ↵Oliver Kiddle2021-12-161-5/+3
| | | | glob qualifiers completion
* 49643: facilitate use of the fake style by always calling _description with ↵Oliver Kiddle2021-12-131-4/+8
| | | | | | the executables tag for command names Also allow the command-path style to include relative directories.
* 49528: allow multiple -D options to compaddOliver Kiddle2021-10-301-1/+1
|
* 49389: leading variables in autoload file completionBart Schaefer2021-09-081-2/+2
|
* 48969: fix for "zle -N" completionMarlon Richert2021-09-061-4/+4
|
* unposted (based on Marlon: 49273): add -x to local completionOliver Kiddle2021-08-271-2/+2
|
* 49211: _typeset: correctly set return valueJun-ichi Takimoto2021-07-301-14/+15
| | | | do not include '-' in onopts so that 'functions -- <TAB>' works.
* 49151: remove commas erroneously included in _arguments exclusion listsOliver Kiddle2021-07-091-10/+10
|
* 49150: consistently use singular form for headings on completion match groupsOliver Kiddle2021-07-0910-19/+19
|
* 48864: Improve extra-verbose completion display strings for array parameter ↵Marlon Richert2021-05-211-5/+9
| | | | values
* 48710: histed + other zed updatesBart Schaefer2021-05-151-5/+11
|
* Add -L to add-(zsh|zle)-hook[-widget] completionMarlon Richert2021-04-192-6/+12
| | | | …and hide mutually exclusive options.
* 48361 (+ 48368 review comments): __arguments: New completion function for ↵Daniel Shahaf2021-04-171-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
* 48513: Let extra-verbose completion show parameter valuesMarlon Richert2021-04-161-14/+30
|
* 48378: complete compadd options for other completion functionsOliver Kiddle2021-04-091-37/+84
|
* 47737: _zstyle: Fix option completion when positional arguments are already ↵dana2021-03-291-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.
* github #68: support section suffix completion for man pagestaiyu2021-02-131-0/+6
| | | | | Support prepend and suffix values for insert-sections Add values for insert-sections for zstyle completion
* 47929: complete newer possible values for the sort styleOliver Kiddle2021-02-071-1/+5
|
* 47873: Improve completion within dynamic directory namesPeter Stephenson2021-01-271-1/+3
|
* 47494, 47495: Add -n option to strftimeMikael Magnusson2020-10-251-5/+7
|
* 47364: Enable extendedglob in pattern with ${(*)name/pattern/replacement}Bart Schaefer2020-09-131-0/+1
| | | | Mikael Magnusson: 47382: Completion for 47364
* unposted: remove periods from completion descriptionsDoug Kearns2020-09-061-1/+1
| | | | As per the completion-style-guide recommendations.
* 47306: edit-command-line: add editor styleMikael Magnusson2020-08-161-0/+1
|
* 47304: _globflags: support specifying more than one flag where appropriateMikael Magnusson2020-08-161-9/+24
|
* github #61: _parameters: Don't leak the variable $ioxiedi2020-07-141-1/+1
|
* 46036: fix colouring in prompt completionOliver Kiddle2020-06-111-3/+3
|
* users/24892: fix local declaration with recursive-files style and complete ↵Oliver Kiddle2020-06-111-4/+6
| | | | it for zstyle
* 45424: completion: Add **/sbin to PATH when completing commands like sudodana2020-03-111-3/+16
| | | | | | | | | | | | | | | | | | * Update _command_names to add **/sbin to PATH when not otherwise overridden and _comp_priv_prefix is set. This ensures that, on systems where unprivileged users don't have **/sbin in their PATHs, we can still complete those commands when they try to run them with e.g. sudo * Update functions for privilege-gaining commands to use the aforementioned mechanism * Fix some other minor issues in _pfexec and _doas Changes from the posted diff: * Fix a minor redundancy in _doas * Add _c_p_p=( '' ) hack to _su
* 45447: Complete vcs_info_hookadd and vcs_info_hookdel. Expose ↵Daniel Shahaf2020-02-193-3/+33
| | | | _vcs_info_hooks as a top-level helper function.
* _brace_parameter: add missing \Mikael Magnusson2020-01-191-1/+1
|
* 44970: _brace_parameter: Update the description of S flagSebastian Gniazdowski2019-12-041-1/+1
|
* 44809: _typeset: Complete 'functions -c'Daniel Shahaf2019-10-141-0/+1
|