2020-06-07 21:07:18 +02:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: asm
|
|
|
|
" Maintainer: Colin Caine <cmcaine at the common googlemail domain>
|
2023-08-29 05:32:27 +10:00
|
|
|
" Last Change: 23 May 2020
|
|
|
|
" 2023 Aug 28 by Vim Project (undo_ftplugin)
|
2020-06-07 21:07:18 +02:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin") | finish | endif
|
2023-08-29 05:32:27 +10:00
|
|
|
let b:did_ftplugin = 1
|
2020-06-07 21:07:18 +02:00
|
|
|
|
|
|
|
setl comments=:;,s1:/*,mb:*,ex:*/,://
|
|
|
|
setl commentstring=;%s
|
|
|
|
|
2023-08-29 05:32:27 +10:00
|
|
|
let b:undo_ftplugin = "setl commentstring< comments<"
|