From 462003f9960e6fa41a835401010612ce67e83a90 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 30 Sep 2021 14:18:10 +1000 Subject: syntax-highlighting: vim: use Boolean highlight group for booleans --- data/syntax-highlighting/vim/syntax/meson.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data') diff --git a/data/syntax-highlighting/vim/syntax/meson.vim b/data/syntax-highlighting/vim/syntax/meson.vim index 78a8db9..df3d1d6 100644 --- a/data/syntax-highlighting/vim/syntax/meson.vim +++ b/data/syntax-highlighting/vim/syntax/meson.vim @@ -60,7 +60,7 @@ syn match mesonNumber "\<0x\x\+\>" syn match mesonNumber "\<0o\o\+\>" " booleans -syn keyword mesonConstant false true +syn keyword mesonBoolean false true " Built-in functions syn keyword mesonBuiltin @@ -145,7 +145,7 @@ hi def link mesonString String hi def link mesonEscape Special hi def link mesonNumber Number hi def link mesonBuiltin Function -hi def link mesonConstant Number +hi def link mesonBoolean Boolean if exists("meson_space_error_higlight") hi def link mesonSpaceError Error endif -- cgit v1.1