neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

bp.vim (346B)


      1 " Blueprint build system filetype plugin file
      2 " Language: Blueprint
      3 " Maintainer: Bruno BELANYI <bruno.vim@belanyi.fr>
      4 " Latest Revision: 2024-04-19
      5 
      6 if exists("b:did_ftplugin")
      7  finish
      8 endif
      9 let b:did_ftplugin = 1
     10 
     11 setlocal comments=b://,s1:/*,mb:*,ex:*/
     12 setlocal commentstring=//\ %s
     13 
     14 let b:undo_ftplugin = "setlocal comments< commentstring<"