Primeiro commit
This commit is contained in:
16
highlighting/vim-reddust/reddust.vim
Normal file
16
highlighting/vim-reddust/reddust.vim
Normal file
@@ -0,0 +1,16 @@
|
||||
" 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"
|
||||
Reference in New Issue
Block a user