vim/bundle/potion/syntax/potion.vim @ 0856b1d8b0c3
mor
| author | Steve Losh <steve@stevelosh.com> | 
|---|---|
| date | Mon, 04 Nov 2013 10:33:01 -0500 | 
| parents | 4c036b4fcae9 | 
| children | (none) | 
if exists("b:current_syntax") finish endif syntax keyword potionKeyword loop times to while syntax keyword potionKeyword if elsif else syntax keyword potionKeyword class return syntax keyword potionFunction print join string syntax match potionComment "\v#.*$" syntax match potionOperator "\v\*" syntax match potionOperator "\v/\=" syntax match potionOperator "\v\+" syntax match potionOperator "\v-" syntax match potionOperator "\v/" syntax match potionOperator "\v\*\=" syntax match potionOperator "\v\+\=" syntax match potionOperator "\v-\=" syntax match potionOperator "\v\?" syntax region potionString start=/\v"/ skip=/\v\\./ end=/\v"/ syntax region potionString start=/\v'/ skip=/\v\\./ end=/\v'/ highlight link potionKeyword Keyword highlight link potionFunction Function highlight link potionOperator Operator highlight link potionComment Comment highlight link potionString String let b:current_syntax = "potion"