vim-tomo/ftplugin/blang.vim

16 lines
298 B
VimL
Raw Normal View History

2022-11-11 18:25:19 -08:00
" Language: Blang
" Maintainer: Bruce Hill <bruce@bruce-hill.com>
" License: WTFPL
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal formatoptions-=t
setlocal cpoptions+=M
setlocal commentstring=//\ %s
let b:undo_ftplugin = "setlocal formatoptions< cpoptions<"