From 9bf5649c7df6bbd746956e9a96b616f61a59fa9b Mon Sep 17 00:00:00 2001 From: Guldoman Date: Wed, 2 Nov 2022 08:10:57 +0100 Subject: Use new `command.add` syntax (#136) --- plugins/spellcheck.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/spellcheck.lua') diff --git a/plugins/spellcheck.lua b/plugins/spellcheck.lua index f55cf1f..29db94c 100644 --- a/plugins/spellcheck.lua +++ b/plugins/spellcheck.lua @@ -181,7 +181,7 @@ command.add("core.docview", { end, - ["spell-check:replace"] = function() + ["spell-check:replace"] = function(dv) local word, s, e = get_word_at_caret() -- find suggestions @@ -202,7 +202,7 @@ command.add("core.docview", { -- sort suggestions table and convert to properly-capitalized text table.sort(suggestions, function(a, b) return a.diff < b.diff end) - local doc = core.active_view.doc + local doc = dv.doc local line = doc:get_selection() local has_upper = doc.lines[line]:sub(s, s):match("[A-Z]") for k, v in pairs(suggestions) do -- cgit v1.2.3