vim/bundle/ccs/syntax/mu.vim @ 8ac890f099a0

Get the fuckin Unity rube goldberg machine up and running again
author Steve Losh <steve@stevelosh.com>
date Fri, 20 Jan 2017 12:35:01 +0000
parents 9062792cfda3
children (none)
if exists("b:current_syntax")
    finish
endif

syntax region ccsComment start=+*+ end=+$+
syntax keyword ccsKeyword prop
syntax keyword ccsConstant tt ff
syntax match ccsAll '\v\[\k+\]'
syntax match ccsExists '\v\<\k+\>'

highlight default link ccsComment Comment
highlight default link ccsConstant Constant
highlight default link ccsKeyword Keyword
highlight default link ccsAll Macro
highlight default link ccsExists Function

let b:current_syntax = "mu"