diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-03-12 18:02:57 +0530 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-03-12 13:35:32 -0400 |
commit | a076e9852bf038908f0f92d0790f8bd00b3cb7f5 (patch) | |
tree | fbb753391921300079a06d00818ce7814ec609e0 /data | |
parent | 88e40c7081b9bf8a337022ad2f12efe485fa8021 (diff) | |
download | meson-a076e9852bf038908f0f92d0790f8bd00b3cb7f5.zip meson-a076e9852bf038908f0f92d0790f8bd00b3cb7f5.tar.gz meson-a076e9852bf038908f0f92d0790f8bd00b3cb7f5.tar.bz2 |
syntax-highlighting/vim: Add `in` as an operator
This was missed. Ages ago.
Diffstat (limited to 'data')
-rw-r--r-- | data/syntax-highlighting/vim/syntax/meson.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/syntax-highlighting/vim/syntax/meson.vim b/data/syntax-highlighting/vim/syntax/meson.vim index 52d3e10..d0d15d9 100644 --- a/data/syntax-highlighting/vim/syntax/meson.vim +++ b/data/syntax-highlighting/vim/syntax/meson.vim @@ -33,7 +33,7 @@ set cpo&vim " http://mesonbuild.com/Syntax.html syn keyword mesonConditional elif else if endif syn keyword mesonRepeat foreach endforeach -syn keyword mesonOperator and not or +syn keyword mesonOperator and not or in syn match mesonComment "#.*$" contains=mesonTodo,@Spell syn keyword mesonTodo FIXME NOTE NOTES TODO XXX contained |