blob: 56f3019f8758daa3381d1ca89c01a5af62cf0eda (
plain)
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
46
47
48
49
50
51
|
---develop mode, use command line: --develop=true
---@type boolean
DEVELOP = false
---port for `Lua Debug` connecting, use command line: --dbgport=11411
---@type integer
DBGPORT = 0
---need holdon before `Lua Debug` connecting, use command line: --dbgwait=true
---@type boolean
DBGWAIT = false
---displayed language, use command line: --locale="en-us"
---@type '"en-us"'|'"zh-cn"'|'"pt-br"'
LOCALE = 'en-us'
---path of local config file, use command line: --configpath="config.lua"
---@type string
CONFIGPATH = ''
---display the internal data of the hovring token, use command line: --showsource=true
---@type boolean
SHOWSOURCE = false
---trace every searching into log, use command line: --trace=true
---@type boolean
TRACE = false
---trace searching with `too deep!` into log, use command line: --footprint=true
---@type boolean
FOOTPRINT = false
---trace rpc, use command line: --rpclog=true
---@type boolean
RPCLOG = false
--enable preview features.
--
--the current version is `formatting`
---@type boolean
PREVIEW = false
--check path
---@type string
CHECK = ''
---@type string | '"Error"' | '"Warning"' | '"Information"' | '"Hint"'
CHECKLEVEL = 'Warning'
---@type 'trace' | 'debug' | 'info' | 'warn' | 'error'
LOGLEVEL = 'warn'
|