Use 'very magic' regexp to match dot-operator

This commit is contained in:
Viktor Varland 2016-01-28 10:45:37 +01:00
parent 31a2a2aa36
commit 9f7fe3fb61

View file

@ -2,8 +2,8 @@ if exists("b:current_syntax")
finish
endif
syntax keyword clustertextKeyword .
syntax match clustertextOperator "\v\."
highlight link clustertextKeyword Keyword
highlight link clustertextOperator Operator
let b:current_syntax = "clustertext"