2024-04-10 22:28:28 +02:00
|
|
|
" Blueprint build system filetype plugin file
|
|
|
|
" Language: Blueprint
|
|
|
|
" Maintainer: Bruno BELANYI <bruno.vim@belanyi.fr>
|
2024-04-19 14:19:31 +01:00
|
|
|
" Latest Revision: 2024-04-19
|
2024-04-10 22:28:28 +02:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2024-04-19 14:19:31 +01:00
|
|
|
setlocal comments=b://,s1:/*,mb:*,ex:*/
|
|
|
|
setlocal commentstring=//\ %s
|
2024-04-10 22:28:28 +02:00
|
|
|
|
|
|
|
let b:undo_ftplugin = "setlocal comments< commentstring<"
|