diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-01-18 21:04:47 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-01-18 21:04:47 +0800 |
commit | 8464f80bf6e013abe0c0e8b05645e2ce474d82f1 (patch) | |
tree | 9a09c25743003b79d93b2d881e73b5fc8896625c /test.lua | |
parent | fbdfcb59b261672454aee34d486e7f06b5a5d114 (diff) | |
download | lua-language-server-8464f80bf6e013abe0c0e8b05645e2ce474d82f1.zip |
add log
Diffstat (limited to 'test.lua')
-rw-r--r-- | test.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,4 @@ +local files = require "files" package.path = package.path .. ';./test/?.lua' .. ';./test/?/init.lua' @@ -84,6 +85,12 @@ local function main() ws.awaitReady() + print('Loaded files in', os) + for uri in files.eachFile() do + print(uri) + end + print('===============') + testAll() end) end |