Mercurial > vim
annotate runtime/ftplugin/zsh.vim @ 10315:c1cfdf43560c v8.0.0053
commit https://github.com/vim/vim/commit/60ef3e81f4a54d9f7ee617d57021f0811ec8ada5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 29 14:37:56 2016 +0200
patch 8.0.0053
Problem: No test for what 8.0.0047 fixes.
Solution: Add a test. (Hirohito Higashi)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 29 Oct 2016 14:45:04 +0200 |
parents | 0303182665d5 |
children | 4f7081eb1e26 |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
6823 | 2 " Language: Zsh shell script |
3 " Maintainer: Christian Brabandt <cb@256bit.org> | |
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
5 " Latest Revision: 2015-05-29 | |
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 |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
21 let b:match_words = |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
22 \ &matchpairs |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
23 \ . ',\<if\>:\<elif\>:\<else\>:\<fi\>' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
24 \ . ',\<case\>:^\s*([^)]*):\<esac\>' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
25 \ . ',\<\%(select\|while\|until\|repeat\|for\%(each\)\=\)\>:\<done\>' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
26 let b:match_skip = 's:comment\|string\|heredoc\|subst' |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
1698
diff
changeset
|
27 |
1698 | 28 let &cpo = s:cpo_save |
29 unlet s:cpo_save |