diff options
Diffstat (limited to 'vim/init/special_highlight.vim')
-rw-r--r-- | vim/init/special_highlight.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/init/special_highlight.vim b/vim/init/special_highlight.vim index 9729183..26d2787 100644 --- a/vim/init/special_highlight.vim +++ b/vim/init/special_highlight.vim | |||
@@ -5,9 +5,9 @@ | |||
5 | syntax enable | 5 | syntax enable |
6 | 6 | ||
7 | function! GetHighlightGroupName() | 7 | function! GetHighlightGroupName() |
8 | let l:syntaxID = synID(line('.'), col('.'), 1) | 8 | let l:syntaxID = synID(line('.'), col('.'), 1) |
9 | let l:groupName = synIDattr(l:syntaxID, 'name') | 9 | let l:groupName = synIDattr(l:syntaxID, 'name') |
10 | echo "Highlight Group Name: " . l:groupName | 10 | echo "Highlight Group Name: " . l:groupName |
11 | endfunction | 11 | endfunction |
12 | 12 | ||
13 | " Defualt highlight for matched parenthesis is so weird in many colorscheme | 13 | " Defualt highlight for matched parenthesis is so weird in many colorscheme |