From 9fdc3215ffb07a89c053062bf1dc29f5c046db2d Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 25 Aug 2020 15:31:04 +0200 Subject: make the style of typo highlights configurable --- spellcheck.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'spellcheck.lua') diff --git a/spellcheck.lua b/spellcheck.lua index 9f57c26..a6879b8 100644 --- a/spellcheck.lua +++ b/spellcheck.lua @@ -20,6 +20,7 @@ else return nil end +spellcheck.typo_style = "fore:red" spellcheck.enabled = {} local ignored = {} @@ -27,7 +28,7 @@ local ignored = {} local last_viewport, last_typos = nil, "" vis.events.subscribe(vis.events.WIN_HIGHLIGHT, function(win) - if not spellcheck.enabled[win] or not win:style_define(42, "fore:red") then + if not spellcheck.enabled[win] or not win:style_define(42, spellcheck.typo_style) then return false end local viewport = win.viewport -- cgit