diff options
author | Daniel Hahler <git@thequod.de> | 2016-08-15 12:06:58 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2016-08-15 12:06:58 +0200 |
commit | ef64b6a929b8e485433308f19ec4382514d0f471 (patch) | |
tree | 1884cff80e65e0bbbd701494ea40c656ad4dcf28 | |
parent | 30aafc0b688eeb2d34a19a215e3919af981a00b5 (diff) | |
download | zsh-ef64b6a929b8e485433308f19ec4382514d0f471.tar.gz zsh-ef64b6a929b8e485433308f19ec4382514d0f471.tar.xz zsh-ef64b6a929b8e485433308f19ec4382514d0f471.zip |
39040: Completion/…/_git: fix missing backslashes in 39036
-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 78f056435..ac4c90e75 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -753,7 +753,7 @@ _git-diff () { _arguments -C -s \ $* \ $diff_options \ - '(--exit-code)--quiet[disable all output]' + '(--exit-code)--quiet[disable all output]' \ $diff_stage_options \ '(--cached --staged)'{--cached,--staged}'[show diff between index and named commit]' \ '(-)--[start file arguments]' \ @@ -849,7 +849,7 @@ _git-fetch () { _arguments -C -S -s \ $fetch_options \ - '(-n --no-tags -t --tags)'{-n,--no-tags}'[disable automatic tag following]' + '(-n --no-tags -t --tags)'{-n,--no-tags}'[disable automatic tag following]' \ '(--all -m --multiple)'{-m,--multiple}'[fetch from multiple remotes]' \ '*:: :->repository-or-group-or-refspec' && ret=0 |