diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2021-08-17 12:21:27 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-18 17:01:06 +0100 |
commit | f557bdbf1dcc74a9acd9377f7b665a3dc2afc496 (patch) | |
tree | c6f18106659c4a10e31670937ae9f2b60669eb24 /bitbake/contrib/vim | |
parent | e7bcbc61950c5bdcefb4c91b15867e83c8c12fab (diff) | |
download | poky-f557bdbf1dcc74a9acd9377f7b665a3dc2afc496.tar.gz |
bitbake: contrib: vim: Add "remove" override highlighting
"remove" was accidentally omitted when defining which override operators
should be highlighted
(Bitbake rev: a0248338452f9ec26b588ef83679aca6263e7e76)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/contrib/vim')
-rw-r--r-- | bitbake/contrib/vim/syntax/bitbake.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/contrib/vim/syntax/bitbake.vim b/bitbake/contrib/vim/syntax/bitbake.vim index d8aa0f1ba1..c5ea80fdf2 100644 --- a/bitbake/contrib/vim/syntax/bitbake.vim +++ b/bitbake/contrib/vim/syntax/bitbake.vim | |||
@@ -77,7 +77,7 @@ syn keyword bbOEFunctions do_fetch do_unpack do_patch do_configure do_comp | |||
77 | " Generic Functions | 77 | " Generic Functions |
78 | syn match bbFunction "\h[0-9A-Za-z_\-\.]*" display contained contains=bbOEFunctions | 78 | syn match bbFunction "\h[0-9A-Za-z_\-\.]*" display contained contains=bbOEFunctions |
79 | 79 | ||
80 | syn keyword bbOverrideOperator append prepend contained | 80 | syn keyword bbOverrideOperator append prepend remove contained |
81 | 81 | ||
82 | " BitBake shell metadata | 82 | " BitBake shell metadata |
83 | syn include @shell syntax/sh.vim | 83 | syn include @shell syntax/sh.vim |