diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-30 20:27:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-30 20:27:52 +0100 |
commit | 2f0584910c0ea93966dfa7b3b0272dfb16ea6f91 (patch) | |
tree | eb505013844d366dcfb14a70ea9ab464e5abafb7 /runtime/ftplugin | |
parent | 46359e198f6d6884dc3d3c4a3e46625f1b2a2ad2 (diff) | |
download | vim-git-2f0584910c0ea93966dfa7b3b0272dfb16ea6f91.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/zsh.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/ftplugin/zsh.vim b/runtime/ftplugin/zsh.vim index c03a9466a..fe8efc59a 100644 --- a/runtime/ftplugin/zsh.vim +++ b/runtime/ftplugin/zsh.vim @@ -2,7 +2,7 @@ " Language: Zsh shell script " Maintainer: Christian Brabandt <cb@256bit.org> " Previous Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2015-05-29 +" Latest Revision: 2017-11-22 " License: Vim (see :h license) " Repository: https://github.com/chrisbra/vim-zsh @@ -18,9 +18,7 @@ let b:undo_ftplugin = "setl com< cms< fo<" setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql -let b:match_words = - \ &matchpairs - \ . ',\<if\>:\<elif\>:\<else\>:\<fi\>' +let b:match_words = ',\<if\>:\<elif\>:\<else\>:\<fi\>' \ . ',\<case\>:^\s*([^)]*):\<esac\>' \ . ',\<\%(select\|while\|until\|repeat\|for\%(each\)\=\)\>:\<done\>' let b:match_skip = 's:comment\|string\|heredoc\|subst' |