diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-04-11 18:23:11 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-04-11 18:23:18 +0800 |
commit | 55ffca2f9f8317a5e3ab6e625fcb02e8bcd5dbcf (patch) | |
tree | 9b10c41429f7f51ed5c46ea570538f0e127f5f3a | |
parent | d2d4ad4b32d6444cb50677ce75342273632a44fc (diff) | |
download | rneovim-55ffca2f9f8317a5e3ab6e625fcb02e8bcd5dbcf.tar.gz rneovim-55ffca2f9f8317a5e3ab6e625fcb02e8bcd5dbcf.tar.bz2 rneovim-55ffca2f9f8317a5e3ab6e625fcb02e8bcd5dbcf.zip |
vim-patch:dbca7d80457d
ftplugin(asm): add Matchit support
closes: vim/vim#14461
Refer https://github.com/vim/vim/blob/master/runtime/ftplugin/masm.vim#L18-L29
https://github.com/vim/vim/commit/dbca7d80457d026f6d6a5cc7e916b94df0ca6e03
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
-rw-r--r-- | runtime/ftplugin/asm.vim | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/runtime/ftplugin/asm.vim b/runtime/ftplugin/asm.vim index f6a92d57d7..0ae1610394 100644 --- a/runtime/ftplugin/asm.vim +++ b/runtime/ftplugin/asm.vim @@ -1,13 +1,23 @@ " Vim filetype plugin file " Language: asm " Maintainer: Colin Caine <cmcaine at the common googlemail domain> -" Last Change: 23 May 2020 +" Last Change: 2020 May 23 " 2023 Aug 28 by Vim Project (undo_ftplugin) +" 2024 Apr 09 by Vim Project (add Matchit support) if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 +setl include=^\\s*%\\s*include setl comments=:;,s1:/*,mb:*,ex:*/,:// setl commentstring=;%s -let b:undo_ftplugin = "setl commentstring< comments<" +let b:undo_ftplugin = "setl commentstring< comments< include<" + +" Matchit support +if !exists('b:match_words') + let b:match_skip = 's:comment\|string\|character\|special' + let b:match_words = '^\s*%\s*if\%(\|num\|idn\|nidn\)\>:^\s*%\s*elif\>:^\s*%\s*else\>:^\s*%\s*endif\>,^\s*%\s*macro\>:^\s*%\s*endmacro\>,^\s*%\s*rep\>:^\s*%\s*endrep\>' + let b:match_ignorecase = 1 + let b:undo_ftplugin ..= " | unlet! b:match_ignorecase b:match_words b:match_skip" +endif |