From 8a8fc4e8cb95c355abc7e97e69261cd104174a8b Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 7 Jan 2019 19:32:50 +0100 Subject: Changed gtk colors and current word hightlighting not bold and underlined, but only underlined now --- plugin/max-highlight-word-under-cursor.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin/max-highlight-word-under-cursor.vim') diff --git a/plugin/max-highlight-word-under-cursor.vim b/plugin/max-highlight-word-under-cursor.vim index d557b40..2e7f5a0 100644 --- a/plugin/max-highlight-word-under-cursor.vim +++ b/plugin/max-highlight-word-under-cursor.vim @@ -11,7 +11,7 @@ function! HighlightWordUnderCursor() let l:currentword = escape(expand(''), '.') if(strlen(l:currentword) > 0) let w:m1=100 - silent! call matchadd('BoldUnderline', '\<'.l:currentword.'\>', -1, w:m1) + silent! call matchadd('Underline', '\<'.l:currentword.'\>', -1, w:m1) endif endfunction -- cgit v1.2.3