xref: /vim-8.2.3635/runtime/ftplugin/asm.vim (revision ceb56ddb)
1" Vim filetype plugin file
2" Language:	asm
3" Maintainer:	Colin Caine <cmcaine at the common googlemail domain>
4" Last Changed: 23 May 2020
5
6if exists("b:did_ftplugin") | finish | endif
7
8setl comments=:;,s1:/*,mb:*,ex:*/,://
9setl commentstring=;%s
10
11let b:did_ftplugin = 1
12