syntax-highlighting: vim: match octal and hexadecimal numbers

pull/9393/head
Doug Kearns 4 years ago committed by Eli Schwartz
parent 1d17ef3edb
commit a0dc60f841
  1. 2
      data/syntax-highlighting/vim/syntax/meson.vim

@ -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

Loading…
Cancel
Save