Files
vim-polyglot/ftplugin/bicep.vim
Adam Stankiewicz 38282d5838 Update
2022-04-30 15:07:33 +02:00

22 lines
496 B
VimL

if polyglot#init#is_disabled(expand('<sfile>:p'), 'bicep', 'ftplugin/bicep.vim')
finish
endif
" bicep.vim - basic bicep integration
" Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
if exists('b:did_ftplugin') || v:version < 700 || &compatible
finish
endif
let b:did_ftplugin = 1
let s:cpo_save = &cpoptions
set cpoptions&vim
" Set the commentstring
setlocal commentstring=//%s
let b:undo_ftplugin = 'setlocal commentstring<'
let &cpoptions = s:cpo_save
unlet s:cpo_save