-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterra_mode.moon
45 lines (39 loc) · 1.12 KB
/
terra_mode.moon
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
43
44
45
class TerraMode
new: =>
@lexer = bundle_load('terra_lexer')
@api = bundle_load('api')
@completers = { 'in_buffer', 'api' }
comment_syntax: '--'
auto_pairs: {
'(': ')'
'[': ']'
'{': '}'
'"': '"'
"'": "'"
}
indentation: {
more_after: {
r'[({=]\\s*(--.*|)$' -- hanging operators
r'function\\b\\s*[^(]*\\([^)]*\\)\\s*(--.*|)$' -- function starter
r'terra\\b\\s*[^(]*\\([^)]*\\)\\s*(--.*|)$' -- function starter
r'\\b(then|do)\\b\\s*(--.*|)$', -- block starters
{ '^%s*if%s+', '%s+end$' }
r'^\\s*else\\b',
}
less_for: {
r'^\\s*end\\b'
'^%s*}'
r'^\\s*else\\b'
r'^\\s*elseif\\b'
r'^\\s*\\}\\b'
}
}
code_blocks:
multiline: {
{ r'\\s+then\\s*$', '^%s*end', 'end' },
{ r'(^\\s*|\\s+)function\\s*\\([^)]*\\)\\s*$', '^%s*end', 'end' },
{ r'^\\s*function\\s+\\w+[_:.\\w]+\\s*\\([^)]*\\)\\s*$', '^%s*end', 'end' },
{ r'^\\s*terra\\s+\\w+[_:.\\w]+\\s*\\([^)]*\\)\\s*$', '^%s*end', 'end' },
{ r'(^\\s*|\\s+)do\\s*$', '^%s*end', 'end' },
{ r'^\\s*repeat\\s*$', '^%s*until', 'until' },
}