diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-12-08 16:33:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-08 16:33:38 +0100 |
| commit | 35767769036671d5ce562f53cae574f9c66e4bb2 (patch) | |
| tree | 5c2b943ea25ece5b25fd862f1daed4e125197ee3 /runtime/ftplugin/cs.vim | |
| parent | 7b9ad45178fc2f53c4824ad42213c340bdd66ebf (diff) | |
| download | rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.tar.gz rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.tar.bz2 rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.zip | |
vim-patch:86b4816766d9 (#21314)
Update runtime files
https://github.com/vim/vim/commit/86b4816766d976a7ecd4403eca1f8bf6b4105800
vim-patch:9.0.1029: autoload directory missing from distribution
Problem: Autoload directory missing from distribution.
Solution: Add the autoload/zig directory to the list of distributed files.
https://github.com/vim/vim/commit/84dbf855fb2d883481f74ad0ccf3df3f8837e6bf
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/ftplugin/cs.vim')
| -rw-r--r-- | runtime/ftplugin/cs.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/ftplugin/cs.vim b/runtime/ftplugin/cs.vim index f53ffcbc8e..0734d11d22 100644 --- a/runtime/ftplugin/cs.vim +++ b/runtime/ftplugin/cs.vim @@ -2,7 +2,7 @@ " Language: C# " Maintainer: Nick Jensen <nickspoon@gmail.com> " Former Maintainer: Johannes Zellner <johannes@zellner.org> -" Last Change: 2021-12-07 +" Last Change: 2022-11-16 " License: Vim (see :h license) " Repository: https://github.com/nickspoons/vim-cs @@ -25,8 +25,9 @@ let b:undo_ftplugin = 'setl com< fo<' if exists('loaded_matchit') && !exists('b:match_words') " #if/#endif support included by default + let b:match_ignorecase = 0 let b:match_words = '\%(^\s*\)\@<=#\s*region\>:\%(^\s*\)\@<=#\s*endregion\>,' - let b:undo_ftplugin .= ' | unlet! b:match_words' + let b:undo_ftplugin .= ' | unlet! b:match_ignorecase b:match_words' endif if (has('gui_win32') || has('gui_gtk')) && !exists('b:browsefilter') |