Mercurial > vim
annotate runtime/ftplugin/zsh.vim @ 18401:d1bb50cdb9ad
Added tag v8.1.2194 for changeset f66fee58e7e2e9ad4ab5db58d2aaae029582f946
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 20 Oct 2019 20:00:04 +0200 |
parents | 45987b1b77dc |
children | 847a300aa244 |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
11914 | 2 " Language: Zsh shell script |
3 " Maintainer: Christian Brabandt <cb@256bit.org> | |
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
12968 | 5 " Latest Revision: 2017-11-22 |
11914 | 6 " License: Vim (see :h license) |
7 " Repository: https://github.com/chrisbra/vim-zsh | |
375 | 8 |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 let b:did_ftplugin = 1 | |
13 | |
1698 | 14 let s:cpo_save = &cpo |
15 set cpo&vim | |
16 | |
389 | 17 let b:undo_ftplugin = "setl com< cms< fo<" |
375 | 18 |
389 | 19 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql |
1698 | 20 |
12968 | 21 let b:match_words = ',\<if\>:\<elif\>:\<else\>:\<fi\>' |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
22 \ . ',\<case\>:^\s*([^)]*):\<esac\>' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
23 \ . ',\<\%(select\|while\|until\|repeat\|for\%(each\)\=\)\>:\<done\>' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
24 let b:match_skip = 's:comment\|string\|heredoc\|subst' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
25 |
1698 | 26 let &cpo = s:cpo_save |
27 unlet s:cpo_save |