From ebdd1360935b8c27eae6929042b0386af3e2e43b Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 26 Aug 2020 19:11:14 +0200 Subject: add the option 'disable_syntax_awareness' to always check the full viewport --- spellcheck.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'spellcheck.lua') diff --git a/spellcheck.lua b/spellcheck.lua index aacdd94..782fe8f 100644 --- a/spellcheck.lua +++ b/spellcheck.lua @@ -24,6 +24,7 @@ end spellcheck.typo_style = "fore:red" spellcheck.check_full_viewport = {} +spellcheck.disable_syntax_awareness = false spellcheck.check_tokens = { [vis.lexers.STRING] = true, @@ -203,7 +204,7 @@ local enable_spellcheck = function() return end - if vis.win.syntax and vis.lexers.load then + if not spellcheck.disable_syntax_awareness and vis.win.syntax and vis.lexers.load then local lexer = vis.lexers.load(vis.win.syntax, nil, true) if lexer and lexer.lex then local old_lex_func = lexer.lex -- cgit