aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorMax Christian Pohle2019-01-07 19:32:50 +0100
committerMax Christian Pohle2019-01-07 19:46:13 +0100
commit8a8fc4e8cb95c355abc7e97e69261cd104174a8b (patch)
tree7d709a6f30bd548f17dae635860cd6fc961174d3 /plugin
parented803af15c2caa1f6e3bcf4454a2e5a354d77bab (diff)
downloadvim-8a8fc4e8cb95c355abc7e97e69261cd104174a8b.tar.bz2
vim-8a8fc4e8cb95c355abc7e97e69261cd104174a8b.zip
Changed gtk colors and current word hightlighting
not bold and underlined, but only underlined now
Diffstat (limited to 'plugin')
-rw-r--r--plugin/max-highlight-word-under-cursor.vim2
1 files changed, 1 insertions, 1 deletions
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()
11 let l:currentword = escape(expand('<cword>'), '.') 11 let l:currentword = escape(expand('<cword>'), '.')
12 if(strlen(l:currentword) > 0) 12 if(strlen(l:currentword) > 0)
13 let w:m1=100 13 let w:m1=100
14 silent! call matchadd('BoldUnderline', '\<'.l:currentword.'\>', -1, w:m1) 14 silent! call matchadd('Underline', '\<'.l:currentword.'\>', -1, w:m1)
15 endif 15 endif
16endfunction 16endfunction
17 17
..