-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcon.vim
More file actions
25 lines (20 loc) · 726 Bytes
/
Copy pathcon.vim
File metadata and controls
25 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Vim syntax file
" Language: Construct
" Maintainer: Alex Ozdemir <aozdemir@hmc.edu>
" Latest Revision: 12 December 2015
if exists("b:current_syntax")
finish
endif
" Keywords
syn keyword constructInclude include nextgroup=constructPath skipwhite
syn keyword constructKeywords let given return
syn keyword constructHeader construction shape
syn keyword constructBuiltinTypes point points
syn keyword constructBuiltinTypes line ray circle segment
syn keyword constructBuiltinFns intersection new
let b:current_syntax = "con"
hi def link constructInclude PreProc
hi def link constructKeywords Function
hi def link constructHeader Special
hi def link constructBuiltinFns Statement
hi def link constructBuiltinTypes Type