about summary refs log tree commit diff
path: root/Completion
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix outdated npm completionHong Xu2014-02-241-15/+5
|/
* 32642: improve bzr completion with directory pathSebastien Alaiwan2014-02-241-2/+2
|
* new forms of completion for btrfsEric Cook2014-02-181-4/+138
|
* updated subcommand completion for btrfsEric Cook2014-02-181-10/+42
|
* minor typo in btrfs completionEric Cook2014-02-181-1/+1
|
* remove hard tabs from btrfs completionEric Cook2014-02-181-75/+75
|
* 32398: _git: completion updates up to latest git v1.9.0m0viefreak2014-02-181-32/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - cherry-pick: allow commit ranges to be specified - push: option is called --set-upstream and not --set-upstream-to - status: offer -b,--branch when --porcelain or -z are given --porcelain and -z don't show the branch info by default, so it is needed to offer --branch for those options, too. - checkout: add '--detach' option - checkout: offer '-l' option when '--orphan' was given - show-ref: update wording of --head and --heads according to man-page - config: update default value for color.ui color-bool was changed to accept a default value as $parts[5] - add support for 'cygstart' as a valid builtin browser on cygwin - rebase: add suuport for --autostash and config.autostash - update builtin browser list - grep: add --{no,}textconv - check-ignore: add --no-index - update-ref: add --stdin -z - add -C - pull: add support for --rebase=preserve - config: add support for http.*. options - blame: -L can be given multiple times - config: add support for http.savecookies - push: add support for --force-with-lease - diff: --diff-filter: allow lower-case variants (all-but ... specs) - config: add support for 'fetch.prune' and 'remote.*.prune' - check-ignore: -z: update message, check-attr: add -z - config: add diff.orderfile - revision options: add --exclude - revision options: add --ignore-missing - revision options: add --bisect - rev-parse: add --stuck-long - merge-base: add --fork-point - config: implement submodule.*.update completion - send-email: add --smtp-ssl-cert-path and config options
* 32397: _git: fix __git_submodules to only use the actual name of the submodulem0viefreak2014-02-181-1/+1
| | | | | | | | | | | | The output of 'submodule status' is Xsha1 name (describe) X being one of -,+,U,[space] We are only interested in the name part and not the whole line. Fix the parameter expansions accordingly.
* 32395: _git: diff: refactor and fix wrong completionsm0viefreak2014-02-181-33/+44
| | | | | | | | | | | | | | | | | | | Before this, there were several cases where the completion would offer the wrong things: $ git diff branch -- <tab> would try to complete "changed in workdir files", but needs to complete all "tree files in HEAD". $ git diff --cached -- file1 file2 <tab> would try to complete "changed in workdir files" but needs to complete "changed in index files". ... After this change all possible combinations are taken into account and completion should work properly.
* 32396: _git: fix __git_committish_range_{first,last} and ↵m0viefreak2014-02-181-8/+8
| | | | | | | | | | | | | | | | | | __git_is_committish_range - Ranges with 3 dots would always fail, because the non-greedy expansion %..(.|)* in __git_committish_range_first would only remove '..' and never three dots. 'a...b' would end up in 'a.'. Use ${${1%..*}%.} instead. - Use a similar approach for __git_committish_range_last. - Wrap them in another expansion to replace empty results with 'HEAD'. Git man-page states omitted range ending are being replaced with HEAD. This rule has to be followed to make completions like 'git log foo.. -- <tab>' work properly. - Add an additional check to make sure none of the extracted first/last parts contain additional '..' in invalied ranges such as 'a..b..c'. This gets rid of the 'TODO:' and ideally saves a few unneded calls to git rev-parse.
* 18406: New completion for system_profilerluc2014-02-062-1/+27
|
* 32322: display a message when completion is interrupted from the keyboardBarton E. Schaefer2014-01-301-0/+5
|
* 32300: new od completionJun T2014-01-302-0/+72
|
* 32316: complete new ssh key typeChristian Hesse2014-01-291-1/+3
|
* Merge branch 'master' of git://git.code.sf.net/p/zsh/codeBarton E. Schaefer2014-01-282-0/+8
|\ | | | | | | | | Conflicts: ChangeLog
| * 32303: simplistic completion after $x:Peter Stephenson2014-01-282-0/+8
| |
* | users/18368: compromise to restore partial path completion inadvertently ↵Barton E. Schaefer2014-01-271-0/+8
|/ | | | removed by 31159
* users/18335: avoid passing to "functions" those typeset options that it does ↵Barton E. Schaefer2014-01-191-2/+2
| | | | not accept
* 32267: use explicit path to modinfo for completionsergio2014-01-171-1/+1
|
* 32265: better handling of large package lists.Thomas Mitterfellner2014-01-161-92/+92
|
* 32257: updated zypper completionHolger Macht2014-01-161-1/+111
|
* 32255: complet for python under some pythonN.M namesPeter Stephenson2014-01-141-1/+1
|
* 32245: complete more mpc argumentsKoen Wilde2014-01-101-1/+1
|
* 32238: suppress error output completing after ipMark Oteiza2014-01-071-1/+1
|
* 32231: _chmod was confused by options before the modeJun T2014-01-051-3/+3
|
* 32261: completion updates for Solaris 11, Update 1Danek Duvall2014-01-025-12/+180
|
* 32210: completion for the sysstat suiteEric Cook2013-12-311-0/+150
|
* 32205: skip cdpath search when prefix begins with "../"Barton E. Schaefer2013-12-301-1/+1
|
* 32190: quote _path_files -W path when completing relative to ../Barton E. Schaefer2013-12-281-1/+1
|
* 32186: fix bad backreference; handle glob patterns with backslashed quotesBarton E. Schaefer2013-12-281-2/+2
|
* 32150: fix file reference in executable ownership testBarton E. Schaefer2013-12-181-1/+1
|
* users/18219: compadd -Q for builtins, aliases, and reserved wordsBarton E. Schaefer2013-12-151-3/+3
|
* 32103: parse host:port format in ssh known_hosts files.Aaron Peschel2013-12-131-2/+13
|
* 32056: Handle completion for different versions of iconvJun T2013-12-091-23/+44
|
* 32069: completion for "git submodule update --remote"Hong Xu2013-11-301-0/+1
|
* unposted, see 32054: Rationalise character encoding.Peter Stephenson2013-11-273-29/+29
| | | | | | | | | | Shell functions are strictly ASCII for maximum portability. Other files within the distribution may contain UTF-8 characters. Exception for test files: where they need single character input with the top bit set, ISO-8859-X is used (X doesn't matter as we don't need the Euro).
* unposted, see 32050, 32051: remove non-ASCII characters in functionsPeter Stephenson2013-11-252-2/+2
|
* unposted: Prepare 5.0.2-test-2.Peter Stephenson2013-11-251-0/+1
|
* 32031 plus missed _run_help: get helpfiles install path corect in functionsPeter Stephenson2013-11-231-1/+1
|
* 32008: complete "." and ":" for run-help, clean Doc/help in makeMartin Vaeth2013-11-182-1/+2
|
* 31984: new df completionJun T2013-11-141-0/+79
|
* 31959 (plus tweak to .gitignore): make help files during installationMartin Vaeth2013-11-121-0/+7
|
* unposted: updates for 4.0.2-test-1. zsh-5.0.2-test-1Peter Stephenson2013-11-062-0/+2
| | | | | | Update references to 4.0.2 to 4.0.3. Additional mod_export declarations. Additions to .distfiles.
* 31909: new cat completionJun T2013-10-272-0/+44
|
* 31865: _git: Make --batch(-check) accept an argumentØystein Walle2013-10-211-2/+2
| | | | | Also reword the explanation slightly to make it more compact since more explanation is needed.
* 31864: _git: Add two sub-comamnds introduced in v1.8.4Øystein Walle2013-10-211-0/+19
| | | | Add _git-check-ignore() and _git-check-mailmap()
* 31866: _git: Reword --heads to match new meaningØystein Walle2013-10-211-1/+1
|
* 31862: _git: Add status.short and status.branchØystein Walle2013-10-211-0/+2
|
* 31863: _git: Add new arguments introduced in Git v1.8.4Øystein Walle2013-10-211-3/+10
|
* 31861: _git: Add git-clean -i/--interactive supportØystein Walle2013-10-211-0/+2
| | | | | - Add -i and --interactive to _git-clean() - Add column.clean configuration variable