annotate runtime/ftplugin/bitbake.vim @ 31018:9716c7d24c12
v9.0.0844
patch 9.0.0844: handling 'statusline' errors is spread out
Commit: https://github.com/vim/vim/commit/7b224fdf4a29f115567d4fc8629c1cef92d8444a
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Mon Nov 7 12:16:51 2022 +0000
patch 9.0.0844: handling 'statusline' errors is spread out
Problem: Handling 'statusline' errors is spread out.
Solution: Pass the option name to the lower levels so the option can be
reset there when an error is encountered. (Luuk van Baal,
closes #11467)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 07 Nov 2022 13:30:04 +0100 |
parents |
67f31c24291b |
children |
7c7432a53a6c |
rev |
line source |
29450
|
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
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
|
12 setlocal commentstring=#%s
|
|
13 setlocal comments=:#
|
|
14 setlocal suffixesadd=.bb,.bbclass
|
|
15
|
|
16 let b:undo_ftplugin = "setl cms< com< sua<"
|