22 lines
698 B
VimL
22 lines
698 B
VimL
" Vim syntax file
|
|
|
|
" Setup
|
|
if version >= 600
|
|
" Quit when a syntax file was already loaded
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
endif
|
|
|
|
syn case match
|
|
|
|
syn keyword fartKeywords ambient color define diffuse exposure height look_at material max_depth multisample options position radius reflectance rotate scale shininess size specular translate transparency union up vfov width
|
|
syn keyword fartObjects box camera cyl intersect light plane scene sphere subtract union
|
|
syn match fartNumber "\(^\|\W\)\@<=[+-]\=\(\d\+\)\=\.\=\d\+\([eE][+-]\=\d\+\)\="
|
|
|
|
hi def link fartKeywords Operator
|
|
hi def link fartObjects Type
|
|
hi def link fartNumber Number
|
|
|
|
let b:current_syntax = "fart"
|