diff options
author | Peter Stephenson <pws@zsh.org> | 2015-05-18 12:46:33 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-05-18 12:46:33 +0100 |
commit | 2caa5ddd79729ff48552236c4566b04a15e5daba (patch) | |
tree | b8bde3871dab5a00f592980cd2df8b99e72db50d /Completion/Unix/Command/_vim | |
parent | 2d6569e5906ad504ecc66a3b0114cd284afd81a1 (diff) | |
download | zsh-2caa5ddd79729ff48552236c4566b04a15e5daba.tar.gz zsh-2caa5ddd79729ff48552236c4566b04a15e5daba.tar.xz zsh-2caa5ddd79729ff48552236c4566b04a15e5daba.zip |
35187: unbalanced parentheses in _vim
Diffstat (limited to 'Completion/Unix/Command/_vim')
-rw-r--r-- | Completion/Unix/Command/_vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_vim b/Completion/Unix/Command/_vim index 021054d47..007671be8 100644 --- a/Completion/Unix/Command/_vim +++ b/Completion/Unix/Command/_vim @@ -4,7 +4,7 @@ _vim_files () { case $PREFIX in (+*) _files -P './' $* && return 0 ;; - (scp|http(|s)|(|s)ftp):*) _urls ;; + ((scp|http(|s)|(|s)ftp):*) _urls ;; (*) _files $* ;; esac case $PREFIX in |