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> |
Bruno BELANYI | cee0341 | 2024-04-19 14:19:31 +0100 | [diff] [blame] | 4 | " Latest Revision: 2024-04-19 |
Bruno BELANYI | 6be7ef5 | 2024-04-10 22:28:28 +0200 | [diff] [blame] | 5 | |
| 6 | if exists("b:did_ftplugin") |
| 7 | finish |
| 8 | endif |
| 9 | let b:did_ftplugin = 1 |
| 10 | |
Bruno BELANYI | cee0341 | 2024-04-19 14:19:31 +0100 | [diff] [blame] | 11 | setlocal comments=b://,s1:/*,mb:*,ex:*/ |
| 12 | setlocal commentstring=//\ %s |
Bruno BELANYI | 6be7ef5 | 2024-04-10 22:28:28 +0200 | [diff] [blame] | 13 | |
| 14 | let b:undo_ftplugin = "setlocal comments< commentstring<" |