Bruno BELANYI | 6be7ef5 | 2024-04-10 22:28:28 +0200 | [diff] [blame] | 1 | " Blueprint build system filetype plugin file |
2 | " Language: Blueprint | ||||
3 | " Maintainer: Bruno BELANYI <bruno.vim@belanyi.fr> | ||||
4 | " Latest Revision: 2024-04-10 | ||||
5 | |||||
6 | if exists("b:did_ftplugin") | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal comments=b:# | ||||
12 | setlocal commentstring=#\ %s | ||||
13 | |||||
14 | let b:undo_ftplugin = "setlocal comments< commentstring<" |