diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2021-10-23 22:29:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-23 22:29:17 +0200 |
| commit | 9f392c071aab2e80bc0264f0665d048786cd2e1c (patch) | |
| tree | aad23b8e8b5f92310b6afcd7e0b3aa3e23c7844b /runtime/ftplugin/nsis.vim | |
| parent | 966e605db96a9654af6b93bfccee4fbd23ed71a5 (diff) | |
| download | rneovim-9f392c071aab2e80bc0264f0665d048786cd2e1c.tar.gz rneovim-9f392c071aab2e80bc0264f0665d048786cd2e1c.tar.bz2 rneovim-9f392c071aab2e80bc0264f0665d048786cd2e1c.zip | |
vim-patch:partial 079ba76ae7a7 (#16126)
Update runtime files
https://github.com/vim/vim/commit/079ba76ae7a7d0ef404cb9b41dff2663ff41f51b
skip optwin.vim (needs 8.2.3520)
skip doc/options.txt (needs 8.2.1535)
skip doc/insert.txt (needs 8.2.3528)
Diffstat (limited to 'runtime/ftplugin/nsis.vim')
| -rw-r--r-- | runtime/ftplugin/nsis.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/nsis.vim b/runtime/ftplugin/nsis.vim index 1a35127c86..3dc0d6318a 100644 --- a/runtime/ftplugin/nsis.vim +++ b/runtime/ftplugin/nsis.vim @@ -3,7 +3,7 @@ " Maintainer: Ken Takata " URL: https://github.com/k-takata/vim-nsis " Previous Maintainer: Nikolai Weibull <now@bitwi.se> -" Last Change: 2018-01-26 +" Last Change: 2021-10-18 if exists("b:did_ftplugin") finish @@ -15,7 +15,6 @@ set cpo&vim let b:did_ftplugin = 1 let b:undo_ftplugin = "setl com< cms< fo< def< inc<" - \ " | unlet! b:match_ignorecase b:match_words" setlocal comments=s1:/*,mb:*,ex:*/,b:#,:; commentstring=;\ %s setlocal formatoptions-=t formatoptions+=croql @@ -37,6 +36,7 @@ if exists("loaded_matchit") \ '\${MementoSection}:\${MementoSectionEnd},' . \ '!if\%(\%(macro\)\?n\?def\)\?\>:!else\>:!endif\>,' . \ '!macro\>:!macroend\>' + let b:undo_ftplugin .= " | unlet! b:match_ignorecase b:match_words" endif let &cpo = s:cpo_save |