From a7f329b95e563432869d56466eed413fb3303f68 Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Fri, 26 May 2017 16:46:34 -0700 Subject: [PATCH] Misc cleanup --- autoload/highlight.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/highlight.vim b/autoload/highlight.vim index bb436d8..92c69c0 100644 --- a/autoload/highlight.vim +++ b/autoload/highlight.vim @@ -12,7 +12,7 @@ " s:active_register :: String {{{2 " ------------------------------------------------------------------------------ -" The h_register currently active. This defaults to the unnamed register. +" The h_register currently active. This defaults to register '1'. let s:active_register = "1" @@ -160,7 +160,7 @@ function! highlight#init_register(reg, color) " Supported attributes for 'cterm' and 'gui', as indicated by *synIDattr*. let l:attrs = [ 'fg', 'bg', 'bold', 'italic', 'underline', - \ 'reverse', 'inverse', 'standout', 'underline', 'undercurl'] + \ 'reverse', 'inverse', 'standout', 'undercurl'] let l:highlight = [] for l:mode in ['cterm', 'gui']