diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 12:41:27 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 12:41:27 +0300 |
| commit | 4f2d36194b4f299aa7509d815c07121039ea833b (patch) | |
| tree | f3ded014bad3a4c76ff6a22b8726ebaab68c3d13 /mnv/runtime/ftplugin/asm.mnv | |
| parent | 5b578e70c314723a3cde5c9bfc2be0bf1dadc93b (diff) | |
| download | Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.tar.gz Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.zip | |
NOISSUE change uvim folder name to mnv
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'mnv/runtime/ftplugin/asm.mnv')
| -rw-r--r-- | mnv/runtime/ftplugin/asm.mnv | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mnv/runtime/ftplugin/asm.mnv b/mnv/runtime/ftplugin/asm.mnv new file mode 100644 index 0000000000..628af4988e --- /dev/null +++ b/mnv/runtime/ftplugin/asm.mnv @@ -0,0 +1,25 @@ +" MNV filetype plugin file +" Language: asm +" Maintainer: Colin Caine <cmcaine at the common googlemail domain> +" Last Change: 2020 May 23 +" 2023 Aug 28 by MNV Project (undo_ftplugin) +" 2024 Apr 09 by MNV Project (add Matchit support) +" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring') +" 2026 Jan 19 by MNV Project (add # as comment symbol) + +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< 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 |
