summaryrefslogtreecommitdiff
path: root/Completion
AgeCommit message (Collapse)AuthorFilesLines
2023-10-1152189: ignore compadd -M if -U also specified as they don't make sense togetherOliver Kiddle1-1/+2
This fixes df completion.
2023-10-1152217: update completions for FreeBSD 14Oliver Kiddle20-124/+200
2023-09-2051857: Include fusermount3 in fusermount completionsWim de With1-1/+1
fusermount3 is part of libfuse version 3, while fusermount is part of libfuse version 2. Since they share the exact same command line interface, we can reuse the completions.
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-2052102: Add subcommand autopurge to apt completionJörg Sommer1-9/+5
Autopurge (like autoremove) take the same options like purge and remove the given packages along with their dependencies they become unused.
2023-09-2052141: Add trailer token completion for git commit --trailerWesley Schwengle1-1/+14
Via 842587016d in the git project there has been support for git commit trailer tokens for the bash completion system. This commit adds similar support to zsh. It includes additional hardening of the regexp and allows for tokens which include a '.'. This can be found in git via 9a0ec17606.
2023-09-2052163: completion update for OpenZFS 2.2Oliver Kiddle1-16/+93
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-09-09unposted: extra quoting of words in "eval" for safetyBart Schaefer1-2/+2
2023-09-0752114: improve _niceJun-ichi Takimoto1-9/+18
support -n option, complete only external commands
2023-09-0452112: use '_normal -p subcmd' to complete only external commandJun-ichi Takimoto14-16/+16
2023-08-2852098, 52099, 52100, 52105(+minor tweak): update for latest macOSShohei YOSHIDA4-11/+23
2023-08-2851858 (+52073): virsh's edit command accepts all domainssergio1-1/+0
2023-08-27Marlon Richert: 51861: fix _approximate when compadd has been overriddenBart Schaefer1-26/+22
Before this patch, if compadd had been overridden by a function of the same name, _approximate would not do corrections.
2023-08-2752028: improvements to _shadow / _unshadow, plus helper and docBart Schaefer1-20/+46
2023-08-2752034: update sqlite3 completion for version 3.42.0Shohei YOSHIDA1-0/+4
2023-08-2152059 (+52070): _scons: fix for options --jobs and --questionShohei YOSHIDA1-2/+2
2023-08-1452037: complete only external commands for env/watchJun-ichi Takimoto3-5/+5
also includes a few minor fixes for _date, _env and _watch
2023-08-0652013,52014,52015,52016,52017,52018: updates for coreutils option changesShohei YOSHIDA6-0/+6
2023-07-31github #100: _qemu: add -enable-kvm and -bios suggestionHexorCatZ1-0/+2
2023-07-2651979: Update free completion for procps-ng version 4.0.3Shohei YOSHIDA1-0/+1
2023-07-2651964: support pidof variants other than procpsShohei YOSHIDA1-13/+45
2023-07-2651927: Update procps watch completion for version 4.0.3Shohei YOSHIDA1-0/+3
2023-07-19github #99: _trash: add completion for trash-dmirsella2-22/+57
https://github.com/rushsteve1/trash-d
2023-07-1051897: update _softwareupdateJun-ichi Takimoto1-58/+93
based on 51895 (Shohei YOSHIDA)
2023-06-2251860: simplify suffix handling in _prefix to remove less accurate hackMarlon Richert1-7/+2
This solves the following problems in the _prefix completer: - The old code had logic for dealing with compstate[unambiguous] that was unnecessary. It works fine without it. - Because of this logic, if a widget set compstate[insert]=1 after calling _main_complete, an `x` was left after the completion on the command line. - If the same widget also set `compstate[to_end]=`, then instead, the last character of the inserted completion would be treated as an autoremovable suffix, with the actual suffix being inserted to the line as a normal character. - After inserting a completion, the cursor would move to the end of the entire current word on the command, not the end of word that was inserted. This is not what you want with _prefix, since you are trying to complete a word _before_ the one on the command line, after which you usually want to insert a separator, such as a space or slash, before the next word.
2023-06-0851817: protect ':' in _rcctlStephane Chazelas2-14/+1
This was in 51817 but missed in commit 0577daf. Also remove _ant.rej that was added by the commit.
2023-06-06Protect another : from history modifier expansionStephane Chazelas1-1/+1
2023-06-06Protect some :s from history modifier expansionStephane Chazelas6-8/+21
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-2151348: Fix subscript completion bugs inside ~[...]Marlon Richert1-13/+9
When completing inside ~[...] (_with_ the trailing `]` present), the following bugs occured: - Subscript completion was skipped entirely when there were one or more slashes ('/') in the subscript, which is incorrect, since slashes are allowed there. - Instead of going through _complete, $_comps[-subscript-] was called immediately, causing _setup to be skipped. - If succesful, _main_complete was exited right after, causing menu-style, comppostfuncs and other essential completion features to be skipped.
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-05-13github #98: feat: add `shortcuts` completionsVidhan Bhatt1-0/+88
2023-05-1151340: update _rake for version 13Shohei YOSHIDA1-3/+14
2023-05-1151331: update _pydoc for version 3.11Shohei YOSHIDA1-2/+3
2023-04-1851663: fix a typo in 51582 (_ssh)Jun-ichi Takimoto1-1/+1
2023-03-2751589: Update nm optionsShohei YOSHIDA1-4/+8
- Update Binutils nm 2.40.0 - Update elftoolchain nm 0.7.1
2023-03-2751603: complete dates and times in the form that git acceptsOliver Kiddle1-19/+82
2023-03-1651583: update completion of git attributesOliver Kiddle1-45/+36
2023-03-1651582: openssh 9.3 completion updateOliver Kiddle1-66/+118
2023-03-1651581: update completions to cover changes in OpenBSD 7.2Oliver Kiddle5-6/+8
2023-03-13Sven Joachim: 51563: Fix unmatched double quoteSven Joachim1-1/+1
2023-03-1151539: don't complete diff options to git blameOliver Kiddle1-14/+28
2023-02-2451473: Update cal/ncal completionShohei YOSHIDA1-13/+116
- Support util-linux and bsdmainutils cal on Linux - Support each BSD's implementations
2023-02-2451470 (tweaked, c.f. 51476): Separate cdpath elements in path-directories ↵Sebastian Stark1-2/+9
completion
2023-02-2451474: make -e and --vault-id options repeatable and update for new options ↵Oliver Kiddle1-25/+64
to ansible 2.13.2
2023-02-1951456: complete only modified files with git add -uOliver Kiddle1-8/+14
Also fix a typo, add a missing =, add a prompt for function name after git blame -L and git worktree --force has gained a short -f form.
2023-02-1951455, 51461: new completion for the OpenLDAP client tools including a ↵Oliver Kiddle4-2/+342
helper function for LDAP search filters
2023-02-1751391: complete remote branch names respecting --delete for git pushØystein Walle1-1/+9