mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 15:01:40 +02:00
35187: unbalanced parentheses in _vim
This commit is contained in:
parent
2d6569e590
commit
2caa5ddd79
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
2015-05-18 Peter Stephenson <p.stephenson@samsung.com>
|
2015-05-18 Peter Stephenson <p.stephenson@samsung.com>
|
||||||
|
|
||||||
|
* 35187: Completion/Unix/Command/_vim: fix unbalanced parentheses.
|
||||||
|
|
||||||
* 35184: Src/parse.c, Test/A01grammar.ztst: fix pattern parsing
|
* 35184: Src/parse.c, Test/A01grammar.ztst: fix pattern parsing
|
||||||
after "|" in 35168.
|
after "|" in 35168.
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
_vim_files () {
|
_vim_files () {
|
||||||
case $PREFIX in
|
case $PREFIX in
|
||||||
(+*) _files -P './' $* && return 0 ;;
|
(+*) _files -P './' $* && return 0 ;;
|
||||||
(scp|http(|s)|(|s)ftp):*) _urls ;;
|
((scp|http(|s)|(|s)ftp):*) _urls ;;
|
||||||
(*) _files $* ;;
|
(*) _files $* ;;
|
||||||
esac
|
esac
|
||||||
case $PREFIX in
|
case $PREFIX in
|
||||||
|
|
Loading…
Reference in a new issue