1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:30:05 +08:00
SpaceVim/bundle/vim-teal/ftplugin/teal.vim
2022-04-23 17:28:53 +08:00

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