blob: ab196eb8209576396b5a80969d641449af7a6d23 [file] [log] [blame]
Bram Moolenaar47e13952020-05-12 22:49:12 +02001" Vim filetype plugin file
2" Language: Microsoft Macro Assembler (80x86)
3" Maintainer: Wu Yongwei <wuyongwei@gmail.com>
Bram Moolenaarce001a32022-04-27 15:25:03 +01004" Last Change: 2022-04-24 21:24:52 +0800
Bram Moolenaar47e13952020-05-12 22:49:12 +02005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14let b:undo_ftplugin = "setl iskeyword<"
15
16setlocal iskeyword=@,48-57,_,36,60,62,63,@-@
17
Bram Moolenaarce001a32022-04-27 15:25:03 +010018" Matchit support
19if !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"
29endif
30
Bram Moolenaar47e13952020-05-12 22:49:12 +020031let &cpo = s:cpo_save
32unlet s:cpo_save