aboutsummaryrefslogtreecommitdiffstats
path: root/spellcheck.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spellcheck.lua')
-rw-r--r--spellcheck.lua30
1 files changed, 29 insertions, 1 deletions
diff --git a/spellcheck.lua b/spellcheck.lua
index 45d519a..1272e32 100644
--- a/spellcheck.lua
+++ b/spellcheck.lua
@@ -396,7 +396,7 @@ vis:map(vis.modes.NORMAL, '<C-w>w', function()
return 0
end, 'Correct misspelled word')
-vis:map(vis.modes.NORMAL, '<C-w>i', function()
+local ignore = function()
local win = vis.win
local file = win.file
local pos = win.selection.pos
@@ -425,9 +425,37 @@ vis:map(vis.modes.NORMAL, '<C-w>i', function()
end
win:draw()
+end
+
+vis:map(vis.modes.NORMAL, '<C-w>i', function()
+ ignore()
return 0
end, 'Ignore misspelled word')
+vis:map(vis.modes.NORMAL, '<C-w>a', function()
+ local file = vis.win.file
+ local pos = vis.win.selection.pos
+ if not pos then
+ return
+ end
+
+ local range = file:text_object_word(pos);
+ if not range or range.start == range.finish then
+ return
+ end
+
+ local cmd = string.format(':!echo "*%s\\n#" | %s', file:content(range),
+ spellcheck.cmd:format(spellcheck.get_lang()))
+
+ if not vis:command(cmd) then
+ vis:info('executing vis command: "' .. cmd .. '" failed')
+ end
+
+ -- ignore the added word to prevent it from being highlighted in this session
+ ignore()
+ return 0
+end, 'Add word to user dictionary')
+
vis:option_register('spelllang', 'string', function(value)
vis.win.file.spell_language = value
vis:info('Spellchecking language is now ' .. value)