diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-07-08 15:59:23 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-07-08 15:59:23 +0800 |
commit | 77a276abe8281ac3b9892ecbc5d21c66c22801c7 (patch) | |
tree | dc6768605074aeca6b5e1706dd1645e56fd38b5c /meta/3rd | |
parent | 4876958951dff23ed234523d89b47a854e88acea (diff) | |
download | lua-language-server-77a276abe8281ac3b9892ecbc5d21c66c22801c7.zip |
ignore case in Windows
Diffstat (limited to 'meta/3rd')
-rw-r--r-- | meta/3rd/Jass/config.lua | 1 | ||||
-rw-r--r-- | meta/3rd/OpenResty/config.lua | 16 |
2 files changed, 1 insertions, 16 deletions
diff --git a/meta/3rd/Jass/config.lua b/meta/3rd/Jass/config.lua index dd37d66c..8623494e 100644 --- a/meta/3rd/Jass/config.lua +++ b/meta/3rd/Jass/config.lua @@ -1,4 +1,3 @@ --- matched words words = {'jass.common'} configs = { { diff --git a/meta/3rd/OpenResty/config.lua b/meta/3rd/OpenResty/config.lua index 6cf1d8df..8bee2d10 100644 --- a/meta/3rd/OpenResty/config.lua +++ b/meta/3rd/OpenResty/config.lua @@ -1,7 +1,5 @@ --- list of matched words -words = {} -- list or matched file names -files = {} +files = {'resty/redis%.lua'} -- lsit of settings to be changed configs = { { @@ -9,16 +7,4 @@ configs = { action = 'set', value = 'LuaJIT', }, - { - key = 'Lua.diagnostics.globals', - action = 'add', - value = 'global1', - } } -for _, name in ipairs {'global2', 'global3', 'global4'} do - configs[#configs+1] = { - key = 'Lua.diagnostics.globals', - action = 'add', - value = name, - } -end |