asm.vim 271 B

123456789101112
  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. if exists("b:did_ftplugin") | finish | endif
  6. setl comments=:;,s1:/*,mb:*,ex:*/,://
  7. setl commentstring=;%s
  8. let b:did_ftplugin = 1