forked from Conedy/Conedy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconedy.vim
More file actions
27 lines (22 loc) · 724 Bytes
/
Copy pathconedy.vim
File metadata and controls
27 lines (22 loc) · 724 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
25
26
27
" Vim syntax file
" Language: conedy
" Maintainer: You!
" Last Change: 05.02.2010
"
" copy/link to this file to /usr/share/vim/vimcurrent/syntax (debian) and
" then set filetype=neurosim
"
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
syn keyword controlKeywords for while if vectorFor loop
syn keyword nsTypes network int double node
syn match nsComment "#.*$"
syn region nsString start='"' end='"' contained
syn region nsDesc start='"' end='"'
hi def link controlKeywords Statement
hi def link nsTypes Type
hi def link nsComment Comment
hi def link nsString Constant
hi def link nsDesc String