0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/ftplugin/zsh.vim

28 lines
818 B
VimL
Raw Normal View History

2005-06-29 22:40:58 +00:00
" Vim filetype plugin file
2017-08-01 20:44:53 +02:00
" Language: Zsh shell script
" Maintainer: Christian Brabandt <cb@256bit.org>
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
2017-11-30 20:27:52 +01:00
" Latest Revision: 2017-11-22
2017-08-01 20:44:53 +02:00
" License: Vim (see :h license)
" Repository: https://github.com/chrisbra/vim-zsh
2005-06-29 22:40:58 +00:00
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
2008-08-06 17:06:04 +00:00
let s:cpo_save = &cpo
set cpo&vim
2005-07-04 22:49:24 +00:00
let b:undo_ftplugin = "setl com< cms< fo<"
2005-06-29 22:40:58 +00:00
2005-07-04 22:49:24 +00:00
setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
2008-08-06 17:06:04 +00:00
2017-11-30 20:27:52 +01:00
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'
2008-08-06 17:06:04 +00:00
let &cpo = s:cpo_save
unlet s:cpo_save