25 lines
724 B
VimL
25 lines
724 B
VimL
|
" if exists("b:current_syntax")
|
||
|
" finish
|
||
|
" endif
|
||
|
|
||
|
set iskeyword+=-
|
||
|
|
||
|
syntax keyword lensKeyword physical section keyboard layer chordgroup block
|
||
|
syntax keyword lensAction sticky-switch switch
|
||
|
syntax keyword lensFunction columns place action
|
||
|
syntax keyword lensLayerName center topleft topright bottomleft bottomright
|
||
|
|
||
|
syntax match lensComment "\v--.*$"
|
||
|
syntax match lensOperator "\v\=\>"
|
||
|
syntax match lensHexColor "#[0-9a-fA-F]\{6\}"
|
||
|
|
||
|
highlight link lensAction Identifier
|
||
|
highlight link lensKeyword Keyword
|
||
|
highlight link lensLayerName Constant
|
||
|
highlight link lensComment Comment
|
||
|
highlight link lensOperator Operator
|
||
|
highlight link lensHexColor String
|
||
|
highlight link lensFunction Function
|
||
|
|
||
|
let b:current_syntax = "lens"
|