about summary refs log tree commit diff
path: root/Completion/Unix/Command/_git
diff options
context:
space:
mode:
authordana <dana@dana.is>2020-03-13 09:46:14 -0500
committerdana <dana@dana.is>2020-03-13 09:46:14 -0500
commit754658aff38e1bdf487c58bec6174cbecd019d11 (patch)
tree2b1952cd1793fb92873610f7a934c43039e0c77b /Completion/Unix/Command/_git
parentcb7aadfd2a8b46b7eff4b615867183ecbdf08ac4 (diff)
downloadzsh-754658aff38e1bdf487c58bec6174cbecd019d11.tar.gz
zsh-754658aff38e1bdf487c58bec6174cbecd019d11.tar.xz
zsh-754658aff38e1bdf487c58bec6174cbecd019d11.zip
unposted: _git: Fix copy/paste error in earlier commit that broke `git stash drop`
This was broken by workers/44923 (8aa84bd5fc44)
Diffstat (limited to 'Completion/Unix/Command/_git')
-rw-r--r--Completion/Unix/Command/_git2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 8487ebc1a..9a44ddbbe 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -1809,7 +1809,7 @@ _git-stash () {
           _nothing
           ;;
         (drop)
-          _arguments -S $endopt \_git-notes
+          _arguments -S $endopt \
             '(-q --quiet)'{-q,--quiet}'[suppress all output]' \
             ':: :__git_stashes' && ret=0
           ;;