about summary refs log tree commit diff
path: root/Completion/Unix/Command/_hg
diff options
context:
space:
mode:
authorAnton Shestakov <av6@dwimlabs.net>2018-08-29 08:17:31 +0800
committerOliver Kiddle <okiddle@yahoo.co.uk>2018-08-29 17:27:31 +0200
commitfcb4f7956799c1e0803c0cb37ee3d17c230d7dcc (patch)
treeb0d9f89d2d3381299328e9a04127696448c0351b /Completion/Unix/Command/_hg
parent06f3bc09c0aad4916198823cfe018950475a9cc0 (diff)
downloadzsh-fcb4f7956799c1e0803c0cb37ee3d17c230d7dcc.tar.gz
zsh-fcb4f7956799c1e0803c0cb37ee3d17c230d7dcc.tar.xz
zsh-fcb4f7956799c1e0803c0cb37ee3d17c230d7dcc.zip
43348: _hg: check for both -r and --rev
Diffstat (limited to 'Completion/Unix/Command/_hg')
-rw-r--r--Completion/Unix/Command/_hg4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_hg b/Completion/Unix/Command/_hg
index d92112e68..7b72605b3 100644
--- a/Completion/Unix/Command/_hg
+++ b/Completion/Unix/Command/_hg
@@ -567,7 +567,7 @@ _hg_cmd_diff() {
 
   if [[ $state == 'diff_files' ]]
   then
-    if [[ -n $opt_args[-r] ]]
+    if [[ -n ${opt_args[(I)-r|--rev]} ]]
     then
       _hg_files && ret=0
     else
@@ -795,7 +795,7 @@ _hg_cmd_revert() {
 
   if [[ $state == 'diff_files' ]]
   then
-    if [[ -n $opt_args[-r] ]]
+    if [[ -n ${opt_args[(I)-r|--rev]} ]]
     then
       _hg_files && ret=0
     else