diff options
author | James McCoy <jamessan@jamessan.com> | 2018-10-12 15:39:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 15:39:36 -0400 |
commit | 4c780d663f6ea8ab350e95a707bb98a96c4cc701 (patch) | |
tree | b4e1bd5fe0604fed6f8b4281c39666d5cbb60b9e /runtime/ftplugin | |
parent | b26411bacdebf2e483ce6bd670cfb573555156ec (diff) | |
parent | b5e3fec621947ec681d1e7d9bc48eac19cde746d (diff) | |
download | rneovim-4c780d663f6ea8ab350e95a707bb98a96c4cc701.tar.gz rneovim-4c780d663f6ea8ab350e95a707bb98a96c4cc701.tar.bz2 rneovim-4c780d663f6ea8ab350e95a707bb98a96c4cc701.zip |
Merge pull request #9114 from nono/vim-2f0584910c0e
vim-patch:2f0584910c0e
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 c03a9466a1..fe8efc59ab 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' |