20379
|
1 " Vim filetype plugin file
|
|
2 " Language: Microsoft Macro Assembler (80x86)
|
|
3 " Maintainer: Wu Yongwei <wuyongwei@gmail.com>
|
28620
|
4 " Last Change: 2022-04-24 21:24:52 +0800
|
20379
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
|
14 let b:undo_ftplugin = "setl iskeyword<"
|
|
15
|
|
16 setlocal iskeyword=@,48-57,_,36,60,62,63,@-@
|
|
17
|
28620
|
18 " Matchit support
|
|
19 if !exists('b:match_words')
|
|
20 let b:match_words = '^\s*\.IF\>:^\s*\.ELSEIF\>:^\s*\.ELSE\>:^\s*\.ENDIF\>,'
|
|
21 \ .. '^\s*\.REPEAT\>:^\s*\.UNTIL\(CXZ\)\?\>,'
|
|
22 \ .. '^\s*\.WHILE\>:^\s*\.ENDW\>,'
|
|
23 \ .. '^\s*IF\(1\|2\|E\|DEF\|NDEF\|B\|NB\|IDNI\?\|DIFI\?\)\?\>:^\s*ELSEIF\(1\|2\|E\|DEF\|NDEF\|B\|NB\|IDNI\?\|DIFI\?\)\?\>:^\s*ELSE\>:^\s*ENDIF\>,'
|
|
24 \ .. '\(\<MACRO\>\|^\s*%\?\s*FORC\?\>\|^\s*REPEAT\>\|^\s*WHILE\):^\s*ENDM\>,'
|
|
25 \ .. '\<PROC\>:\<ENDP\>,'
|
|
26 \ .. '\<SEGMENT\>:\<ENDS\>'
|
|
27 let b:match_ignorecase = 1
|
|
28 let b:undo_ftplugin ..= " | unlet! b:match_ignorecase b:match_words"
|
|
29 endif
|
|
30
|
20379
|
31 let &cpo = s:cpo_save
|
|
32 unlet s:cpo_save
|