Clean up use recognition of backtick operator functions, add support for .. range operator

This commit is contained in:
Jason Turner 2010-03-31 01:01:45 +00:00
parent 65c5178549
commit 43d0d6199a

View File

@ -38,7 +38,9 @@ syn keyword chaiscriptType fun var
syn keyword chaiscriptFunc eval throw syn keyword chaiscriptFunc eval throw
"Let's treat all backtick operator function lookups as built in too "Let's treat all backtick operator function lookups as built in too
syn match chaiscriptFunc "`.*`" syn region chaiscriptFunc matchgroup=chaiscriptFunc start="`" end="`"
syn match chaiscriptOperator "\.\."
" Comments " Comments
syn match chaiscriptComment "//.*$" contains=@Spell syn match chaiscriptComment "//.*$" contains=@Spell