Skip to content

Commit 756947d

Browse files
committed
run v fmt -w .
1 parent a08f163 commit 756947d

File tree

2 files changed

+24
-25
lines changed

2 files changed

+24
-25
lines changed

highlight/lua.v

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@ module highlight
33
fn init_lua() Lang {
44
return Lang{
55
name: 'Lua'
6-
lang_extensions: ['lua']
6+
lang_extensions: ['lua']
77
line_comments: '--'
8-
mline_comments: ['--[[', ']]']
8+
mline_comments: ['--[[', ']]']
99
string_start: ['"', "'"]
1010
color: '#00007d'
1111
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',
3434
]
3535
}
3636
}

src/settings.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ mut:
99
oauth_client_secret string
1010
}
1111

12-
1312
fn (mut app App) load_settings() {
1413
settings_result := sql app.db {
1514
select from Settings limit 1

0 commit comments

Comments
 (0)