neovim

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

bitbake.vim (461B)


      1 " Vim filetype plugin file
      2 " Language: Bitbake
      3 " Maintainer: Gregory Anders <greg@gpanders.com>
      4 " Repository: https://github.com/openembedded/bitbake
      5 " Latest Revision: 2022-07-23
      6 "                  2024-05-23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
      7 
      8 if exists("b:did_ftplugin")
      9  finish
     10 endif
     11 let b:did_ftplugin = 1
     12 
     13 setlocal commentstring=#\ %s
     14 setlocal comments=:#
     15 setlocal suffixesadd=.bb,.bbclass
     16 
     17 let b:undo_ftplugin = "setl cms< com< sua<"