diff options
author | B14CK313 <jajoblack@gmx.de> | 2021-11-17 05:22:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 12:22:53 +0800 |
commit | e51f8ce9abe404a018d1b27101dff9c1fc814425 (patch) | |
tree | 3b74b09ecd0c617d35f5a545c28c3db31cd2692e /plugins/spellcheck.lua | |
parent | 9042f2c36a6b3729ce472d55447d2fe5964cb2ce (diff) | |
download | lite-xl-plugins-e51f8ce9abe404a018d1b27101dff9c1fc814425.tar.gz lite-xl-plugins-e51f8ce9abe404a018d1b27101dff9c1fc814425.zip |
Added missing namespace to spellcheck.files config (#86)
This entry was missed in #46 which broke the plugin
Diffstat (limited to 'plugins/spellcheck.lua')
-rw-r--r-- | plugins/spellcheck.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/spellcheck.lua b/plugins/spellcheck.lua index db58606..7b0ba2b 100644 --- a/plugins/spellcheck.lua +++ b/plugins/spellcheck.lua @@ -8,7 +8,7 @@ local DocView = require "core.docview" local Doc = require "core.doc" config.plugins.spellcheck = {} -config.spellcheck.files = { "%.txt$", "%.md$", "%.markdown$" } +config.plugins.spellcheck.files = { "%.txt$", "%.md$", "%.markdown$" } if PLATFORM == "Windows" then config.plugins.spellcheck.dictionary_file = EXEDIR .. "/words.txt" else |