File tree Expand file tree Collapse file tree 2 files changed +24
-25
lines changed Expand file tree Collapse file tree 2 files changed +24
-25
lines changed Original file line number Diff line number Diff line change @@ -3,34 +3,34 @@ module highlight
3
3
fn init_lua () Lang {
4
4
return Lang{
5
5
name: 'Lua'
6
- lang_extensions: ['lua' ]
6
+ lang_extensions: ['lua' ]
7
7
line_comments: '--'
8
- mline_comments: ['--[[' , ']]' ]
8
+ mline_comments: ['--[[' , ']]' ]
9
9
string_start: ['"' , "'" ]
10
10
color: '#00007d'
11
11
keywords: [
12
- 'and' ,
13
- 'break' ,
14
- 'do' ,
15
- 'else' ,
16
- 'elseif' ,
17
- 'end' ,
18
- 'false' ,
19
- 'for' ,
20
- 'function' ,
21
- 'goto' ,
22
- 'if' ,
23
- 'in' ,
24
- 'local' ,
25
- 'nil' ,
26
- 'not' ,
27
- 'or' ,
28
- 'repeat' ,
29
- 'return' ,
30
- 'then' ,
31
- 'true' ,
32
- 'until' ,
33
- 'while' ,
12
+ 'and' ,
13
+ 'break' ,
14
+ 'do' ,
15
+ 'else' ,
16
+ 'elseif' ,
17
+ 'end' ,
18
+ 'false' ,
19
+ 'for' ,
20
+ 'function' ,
21
+ 'goto' ,
22
+ 'if' ,
23
+ 'in' ,
24
+ 'local' ,
25
+ 'nil' ,
26
+ 'not' ,
27
+ 'or' ,
28
+ 'repeat' ,
29
+ 'return' ,
30
+ 'then' ,
31
+ 'true' ,
32
+ 'until' ,
33
+ 'while' ,
34
34
]
35
35
}
36
36
}
Original file line number Diff line number Diff line change 9
9
oauth_client_secret string
10
10
}
11
11
12
-
13
12
fn (mut app App) load_settings () {
14
13
settings_result := sql app.db {
15
14
select from Settings limit 1
You can’t perform that action at this time.
0 commit comments