syntax-highlighting: vim: match octal and hexadecimal numbers

This commit is contained in:
Doug Kearns 2021-09-30 14:11:40 +10:00 committed by Eli Schwartz
parent 1d17ef3edb
commit a0dc60f841
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ syn match mesonEscape "\\$"
" Meson only supports integer numbers
" http://mesonbuild.com/Syntax.html#numbers
syn match mesonNumber "\<\d\+\>"
syn match mesonNumber "\<0x\x\+\>"
syn match mesonNumber "\<0o\o\+\>"
" booleans
syn keyword mesonConstant false true