diff options
Diffstat (limited to 'plugin/max-highlight-word-under-cursor.vim')
-rw-r--r-- | plugin/max-highlight-word-under-cursor.vim | 2 |
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 |
16 | endfunction | 16 | endfunction |
17 | 17 | ||