mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-30 19:20:53 +02:00
unposted: _git: Fix copy/paste error in earlier commit that broke git stash drop
This was broken by workers/44923 (8aa84bd5fc
)
This commit is contained in:
parent
cb7aadfd2a
commit
754658aff3
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2020-03-13 dana <dana@dana.is>
|
2020-03-13 dana <dana@dana.is>
|
||||||
|
|
||||||
|
* unposted: Completion/Unix/Command/_git: Fix copy/paste error
|
||||||
|
in earlier commit that broke `git stash drop`
|
||||||
|
|
||||||
* 45535: Completion/Unix/Command/_lz4: Order compression levels
|
* 45535: Completion/Unix/Command/_lz4: Order compression levels
|
||||||
numerically
|
numerically
|
||||||
|
|
||||||
|
|
|
@ -1809,7 +1809,7 @@ _git-stash () {
|
||||||
_nothing
|
_nothing
|
||||||
;;
|
;;
|
||||||
(drop)
|
(drop)
|
||||||
_arguments -S $endopt \_git-notes
|
_arguments -S $endopt \
|
||||||
'(-q --quiet)'{-q,--quiet}'[suppress all output]' \
|
'(-q --quiet)'{-q,--quiet}'[suppress all output]' \
|
||||||
':: :__git_stashes' && ret=0
|
':: :__git_stashes' && ret=0
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue