aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Seifferth <frankseifferth@posteo.net>2021-10-07 15:25:48 +0200
committerFrank Seifferth <frankseifferth@posteo.net>2021-10-07 15:27:41 +0200
commit0ee415c2d77378bc90cea2905579fc40cb2011ec (patch)
tree18f6d25060abf1393105b3f8638c212de6187147
parent556370f35d4486ad01d549a7f6ff24618a547908 (diff)
downloadvis-editorconfig-0ee415c2d77378bc90cea2905579fc40cb2011ec.tar.gz
Add spell_language
This is not part of the editorconfig specs, but has been proposed (cf. https://github.com/editorconfig/editorconfig/issues/315).
-rw-r--r--README.md6
-rw-r--r--edconf.lua18
2 files changed, 17 insertions, 7 deletions
diff --git a/README.md b/README.md
index 6e04cdc..75411cf 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,12 @@ plugin. At this moment, there is full support for the following settings:
The following settings are implemented partially and / or support is
turned off by default:
+- spell_language: This is not yet part of the editorconfig specification
+ (cf. <https://github.com/editorconfig/editorconfig/issues/315>), but
+ it is implemented anyway. Since vis does not support spellchecking
+ natively, this plugin will only set `vis.win.file.spell_language` to
+ the specified value. It is then up to the spellchecking plugin to
+ respect that variable.
- trim_trailing_whitespace: Turned off by default, can be enabled
via `:set edconfhooks on`.
- end_of_line: Turned off by default, partial support can be enabled
diff --git a/edconf.lua b/edconf.lua
index 12df5a7..f956704 100644
--- a/edconf.lua
+++ b/edconf.lua
@@ -116,6 +116,10 @@ OPTIONS = {
vis_set("tabwidth", value)
end,
+ spell_language = function (value, file)
+ file.spell_language = value
+ end,
+
insert_final_newline = function (value)
-- According to the editorconfig specification, insert_final_newline
-- false is supposed to mean stripping the final newline, if present.
@@ -173,27 +177,27 @@ function ec_iter(p)
end
end
-function ec_set_values(path)
- if path then
- for name, value in ec_iter(path) do
+function ec_set_values(file)
+ if file.path then
+ for name, value in ec_iter(file.path) do
if name:sub(1,4) == "vis_" then
vis_set(name:sub(5,#name), value)
elseif OPTIONS[name] then
- OPTIONS[name](value)
+ OPTIONS[name](value, file)
end
end
end
end
-function ec_parse_cmd() ec_set_values(vis.win.file.path) end
+function ec_parse_cmd() ec_set_values(vis.win.file) end
vis:command_register("econfig_parse", ec_parse_cmd, "(Re)parse an editorconfig file")
vis.events.subscribe(vis.events.FILE_OPEN, function (file)
- ec_set_values(file.path)
+ ec_set_values(file)
end)
vis.events.subscribe(vis.events.FILE_SAVE_POST, function (file, path)
- ec_set_values(file.path)
+ ec_set_values(file)
end)
edconf_hooks_enabled = false