diff options
| author | Oliver Kiddle <opk@zsh.org> | 2017-08-16 23:40:57 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2017-08-16 23:41:09 +0200 |
| commit | f80fe2dfe9dffc512fe76931879087a3ed6d6fa8 (patch) | |
| tree | 6a7536b540841a5ae97518e14d3617d73768fe25 /Completion/Unix/Command/_git | |
| parent | posted but has not shown up: fix fd problem in subshell. (diff) | |
| download | zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar.gz zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar.bz2 zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar.lz zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar.xz zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.tar.zst zsh-f80fe2dfe9dffc512fe76931879087a3ed6d6fa8.zip | |
41552: complete only branches after git worktree add --detach
the --detach is superfluous for other commits
Diffstat (limited to 'Completion/Unix/Command/_git')
| -rw-r--r-- | Completion/Unix/Command/_git | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 518e6d198..26554de05 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2027,9 +2027,9 @@ _git-worktree() { case $line[1] in (add) if (( $words[(I)--detach] )); then - args=( ':commit:__git_commits' ) - else args=( ':branch:__git_branch_names' ) + else + args=( ':commit:__git_commits' ) fi _arguments \ '(-f --force)'{-f,--force}'[checkout branch even if already checked out in another worktree]' \ |
