You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
296 B

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
" case sensitive
syn case match
syn match scrComment "^[ \t]*#.*$"
syn match scrProperty "\${[a-z\.]\+}"
hi link scrComment Comment
hi link scrProperty Identifier
let b:current_syntax = "uboot"