diff options
author | rxi <rxi@users.noreply.github.com> | 2020-04-22 19:32:42 +0100 |
---|---|---|
committer | rxi <rxi@users.noreply.github.com> | 2020-04-22 19:32:42 +0100 |
commit | 5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd (patch) | |
tree | 25659e55f8d3ec07a48014ad38a91f910cb1a9d9 | |
parent | 7e82d2acc9d5fdd78bc4cc16d7ca3585bbd08999 (diff) | |
download | lite-xl-plugins-5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd.tar.gz lite-xl-plugins-5b6ab581e9fcdd554f0b914dd51338f7c2bc3cfd.zip |
Added log output when spellcheck dictionary has finished loading
-rw-r--r-- | spellcheck.lua | 1 |
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) |