diff options
author | Christian Clason <c.clason@uni-graz.at> | 2025-01-20 22:44:56 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-01-21 00:16:24 +0100 |
commit | 855a2a75e6f7d08376c221a46e0179e5c76176ec (patch) | |
tree | 6e64a54cbd46d7a710f1607f7ada6b97df935187 /runtime/ftplugin | |
parent | f50f86b9ff5dd2aab7838801d3c1cad898ea0c77 (diff) | |
download | rneovim-855a2a75e6f7d08376c221a46e0179e5c76176ec.tar.gz rneovim-855a2a75e6f7d08376c221a46e0179e5c76176ec.tar.bz2 rneovim-855a2a75e6f7d08376c221a46e0179e5c76176ec.zip |
vim-patch:4335fcf: runtime(kconfig): updated ftplugin and syntax script
https://github.com/vim/vim/commit/4335fcfed1b0a29c07b10f97d1f309dd8f964de6
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/kconfig.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/ftplugin/kconfig.vim b/runtime/ftplugin/kconfig.vim index 767490701b..1c2857ec50 100644 --- a/runtime/ftplugin/kconfig.vim +++ b/runtime/ftplugin/kconfig.vim @@ -2,7 +2,7 @@ " Vim syntax file " Maintainer: Christian Brabandt <cb@256bit.org> " Previous Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2024-04-12 +" Latest Revision: 2025 Jan 20 " License: Vim (see :h license) " Repository: https://github.com/chrisbra/vim-kconfig @@ -19,4 +19,5 @@ setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql " For matchit.vim if exists("loaded_matchit") let b:match_words = '^\<menu\>:\<endmenu\>,^\<if\>:\<endif\>,^\<choice\>:\<endchoice\>' + let b:undo_ftplugin .= "| unlet! b:match_words" endif |