1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 22:32:12 +02:00

35187: unbalanced parentheses in _vim

This commit is contained in:
Peter Stephenson 2015-05-18 12:46:33 +01:00
parent 2d6569e590
commit 2caa5ddd79
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
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
after "|" in 35168.

View file

@ -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