aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-04-22 19:32:42 +0100
committerrxi <rxi@users.noreply.github.com>2020-04-22 19:32:42 +0100
commit5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd (patch)
tree25659e55f8d3ec07a48014ad38a91f910cb1a9d9
parent7e82d2acc9d5fdd78bc4cc16d7ca3585bbd08999 (diff)
downloadlite-xl-plugins-5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd.tar.gz
lite-xl-plugins-5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd.zip
Added log output when spellcheck dictionary has finished loading
-rw-r--r--spellcheck.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/spellcheck.lua b/spellcheck.lua
index b25f2ac..0c5aca9 100644
--- a/spellcheck.lua
+++ b/spellcheck.lua
@@ -23,6 +23,7 @@ local function init_words()
i = i + 1
if i % 1000 == 0 then coroutine.yield() end
end
+ core.log_quiet("Finished loading dictionary file: %s", config.dictionary_file)
words = t
core.redraw = true
end)