diff options
| author | Alexandre Rames <alexandre@uop.re> | 2017-03-22 16:32:36 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2017-03-24 16:42:51 +0000 |
| commit | fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989 (patch) | |
| tree | 2a137544287a4543ee9aeaa592c3f420db545b3d | |
| parent | 40892: subcommand matching for ip help (diff) | |
| download | zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar.gz zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar.bz2 zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar.lz zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar.xz zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.tar.zst zsh-fc1fedda954e1d10d54253cd7ec0e1bfb6e0e989.zip | |
40878: additional stgit squash command completeion
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Completion/Unix/Command/_stgit | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2017-03-24 Peter Stephenson <p.stephenson@samsung.com> + * Alexandre Rames: 40878: Completion/Unix/Command/_stgit: + additional squash command completion. + * Aaron Schrab: 40892: Functions/Misc/run-help-ip: subcommand matching for ip help. diff --git a/Completion/Unix/Command/_stgit b/Completion/Unix/Command/_stgit index f313f651a..f05591b88 100644 --- a/Completion/Unix/Command/_stgit +++ b/Completion/Unix/Command/_stgit @@ -27,7 +27,7 @@ else compadd ${${(M)${(f)"$(stg series 2> /dev/null)"}##[+>] *}#[+>] } \ && ret=0 ;; - (edit|files|goto|rename|log|float|delete|sink|mail|sync|show|pick|hide) + (edit|files|goto|rename|log|float|delete|sink|mail|sync|show|pick|hide|squash) _wanted -V "patches" expl "patch" \ compadd $(stg series --noprefix 2> /dev/null) \ && ret=0 |
