Bram Moolenaar | b529cfb | 2022-07-25 15:42:07 +0100 | [diff] [blame] | 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 |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 6 | " 2024-05-23 by Riley Bruins <ribru17@gmail.com> ('commentstring') |
Bram Moolenaar | b529cfb | 2022-07-25 15:42:07 +0100 | [diff] [blame] | 7 | |
| 8 | if exists("b:did_ftplugin") |
| 9 | finish |
| 10 | endif |
| 11 | let b:did_ftplugin = 1 |
| 12 | |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 13 | setlocal commentstring=#\ %s |
Bram Moolenaar | b529cfb | 2022-07-25 15:42:07 +0100 | [diff] [blame] | 14 | setlocal comments=:# |
| 15 | setlocal suffixesadd=.bb,.bbclass |
| 16 | |
| 17 | let b:undo_ftplugin = "setl cms< com< sua<" |