blob: 4782f1fd140bae360a6e32f723c5e66e8b886383 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
" Vim syntax file
" Language: Bruijn
if exists("b:current_syntax")
finish
endif
let s:bruijn_syntax_keywords = {
\ 'bruijnInstruction' :[":test "
\ , ":import "
\ , ":print "
\ , ]
\ , }
function! s:syntax_keyword(dict)
for key in keys(a:dict)
execute 'syntax keyword' key join(a:dict[key], ' ')
endfor
endfunction
call s:syntax_keyword(s:bruijn_syntax_keywords)
syntax match bruijnApplication /[()]/
syntax match bruijnAbstraction /[[\]]/
syntax match bruijnIndex display "\d"
syntax match bruijnDefinition /^\S\+/
syntax region bruijnCommentLine start="# " end="$"
" this might be weird but because of bruijn's limited
" functionality it's okay to use the wrong constants
" for better looks
highlight default link bruijnIndex Special
highlight default link bruijnDefinition Function
highlight default link bruijnInstruction Keyword
highlight default link bruijnAbstraction Boolean
highlight default link bruijnApplication String
highlight default link bruijnCommentLine Comment
delfunction s:syntax_keyword
let b:current_syntax = "bruijn"
|