about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2011-11-23 09:50:56 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2011-11-23 09:50:56 +0000
commitb0602dc5b410c97feaba51c6ea3c90322050dc54 (patch)
treebd00637b51f1e92deea968a363ab343bef85fc3f
parent7d04b8f4869c008c37a56b701445a9e634165e0c (diff)
downloadzsh-b0602dc5b410c97feaba51c6ea3c90322050dc54.tar.gz
zsh-b0602dc5b410c97feaba51c6ea3c90322050dc54.tar.xz
zsh-b0602dc5b410c97feaba51c6ea3c90322050dc54.zip
Ignacy Gawędzki: 29912: add "--" to ls in ssh completion
-rw-r--r--ChangeLog7
-rw-r--r--Completion/Unix/Command/_ssh2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 42cadaa80..e29cd0730 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-23  Peter Stephenson  <pws@csr.com>
+
+	* Ignacy Gawędzki: 29912: Completion/Unix/Command/_ssh: add "--"
+	to end options to ls.
+
 2011-11-21  Peter Stephenson  <pws@csr.com>
 
 	* Foudil Brétel: 29911: add --no-legend support (v37+); multiple
@@ -15599,5 +15604,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5503 $
+* $Revision: 1.5504 $
 *****************************************************
diff --git a/Completion/Unix/Command/_ssh b/Completion/Unix/Command/_ssh
index d0944c656..0ec9c84a0 100644
--- a/Completion/Unix/Command/_ssh
+++ b/Completion/Unix/Command/_ssh
@@ -16,7 +16,7 @@ _remote_files () {
     then rempat="${PREFIX%%[^./][^/]#}\*"
     else rempat="${(q)PREFIX%%[^./][^/]#}\*"
     fi
-    remfiles=(${(M)${(f)"$(_call_program files ssh -o BatchMode=yes $args -a -x ${IPREFIX%:} ls -d1FL "$rempat" 2>/dev/null)"}%%[^/]#(|/)})
+    remfiles=(${(M)${(f)"$(_call_program files ssh -o BatchMode=yes $args -a -x ${IPREFIX%:} ls -d1FL -- "$rempat" 2>/dev/null)"}%%[^/]#(|/)})
     compset -P '*/'
     compset -S '/*' || suf='remote file'