summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authordana <dana@dana.is>2020-03-13 09:46:14 -0500
committerdana <dana@dana.is>2022-02-12 07:22:15 -0600
commit355f9e1883725a1db3ec15c49ac866dc60f1a55e (patch)
tree1d5ab270cc45b00bfb44d6d261ea3ada3b149883 /Completion
parentb34d33e3b3c5ae30e8315111f07634c1e7507531 (diff)
downloadzsh-355f9e1883725a1db3ec15c49ac866dc60f1a55e.tar.gz
zsh-355f9e1883725a1db3ec15c49ac866dc60f1a55e.tar.xz
zsh-355f9e1883725a1db3ec15c49ac866dc60f1a55e.zip
unposted: _git: Fix copy/paste error in earlier commit that broke `git stash drop`
This was broken by workers/44923 (8aa84bd5fc44)

(cherry picked from commit 754658aff38e1bdf487c58bec6174cbecd019d11)
Diffstat (limited to 'Completion')
-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 97ab26512..675460dad 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
           ;;