From 5c50af2f50dd8f61d64b4c017cd790e57a27a202 Mon Sep 17 00:00:00 2001 From: "Adam P. Regasz-Rethy" Date: Thu, 2 Aug 2018 20:12:57 -0700 Subject: [PATCH] Ensure E802|E803 is caught regardless of 'iskeyword' --- autoload/loupe/private.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/loupe/private.vim b/autoload/loupe/private.vim index 245a341..218c60b 100644 --- a/autoload/loupe/private.vim +++ b/autoload/loupe/private.vim @@ -81,7 +81,7 @@ function! loupe#private#clear_highlight() abort if exists('w:loupe_hlmatch') try call matchdelete(w:loupe_hlmatch) - catch /\v<(E802|E803)>/ + catch /\v(E802|E803)/ " https://github.com/wincent/loupe/issues/1 finally unlet w:loupe_hlmatch