diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-02-08 19:26:17 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-02-08 19:26:17 +0800 |
commit | 02b4c6ac49073817f564390c89894dd2a48793c7 (patch) | |
tree | 874338c0b60193cfcae7d5e750d510affacff49c | |
parent | 5a9eff3a29d34fb63358f32fc6ee1d8617a16304 (diff) | |
download | lua-language-server-02b4c6ac49073817f564390c89894dd2a48793c7.zip |
#386 temporarily change sleep period back to 0.001
-rw-r--r-- | script/service/service.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/service/service.lua b/script/service/service.lua index f20c6306..8f76a294 100644 --- a/script/service/service.lua +++ b/script/service/service.lua @@ -149,7 +149,7 @@ function m.startTimer() m.working = false m.idleClock = os.clock() end - thread.sleep(0.01) + thread.sleep(0.001) ::CONTINUE:: timer.update() end |