Files
reddust/highlighting/vim-reddust/reddust.vim
2025-07-23 02:31:18 -03:00

17 lines
391 B
VimL

" Syntax file for RedDust
" Maintainer: Syntax Echonomics
if exists("b:current_syntax")
finish
endif
syntax match reddustKeyword /^\s*[0-9A-F]\ze;/
syntax match reddustNumber /\v\<[0-9A-F]\>/
syntax match reddustComment "//.*$"
highlight def link reddustKeyword Keyword
highlight def link reddustNumber Number
highlight def link reddustComment Comment
let b:current_syntax = "reddust"