vim/bundle/ccs/syntax/ccs.vim @ 9062792cfda3

More
author Steve Losh <steve@stevelosh.com>
date Tue, 01 Mar 2016 12:31:04 +0000
parents (none)
children af9026179cd3
if exists("b:current_syntax")
    finish
endif

syntax region ccsComment start=+*+ end=+$+
syntax keyword ccsKeyword proc agent prop set checkprop
syntax keyword ccsKeyword min max tau eps
syntax keyword ccsConstant nil
syntax match ccsOperator '\v\.'
syntax match ccsOperator '\v\+'
syntax match ccsOutput '\v\'\k+'

" non very magic because I dunno how to make vim use the fuckin \< pattern
" with very magic, whatever idc
syntax match ccsInput '\<[a-z]\k\+'

highlight default link ccsComment Comment
highlight default link ccsConstant Constant
highlight default link ccsKeyword Keyword
highlight default link ccsOperator Operator
highlight default link ccsOutput Macro
highlight default link ccsInput Function

let b:current_syntax = "ccs"