mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:50:04 +08:00
16 lines
279 B
VimL
16 lines
279 B
VimL
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
let s:cpo_save = &cpo
|
|
|
|
setlocal comments=s:--[[,mb:-,ex:]],:--,f:#,:--
|
|
setlocal commentstring=--%s
|
|
setlocal suffixesadd=.tl
|
|
|
|
let b:undo_ftplugin = "setl com< cms< mp< sua<"
|
|
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|