aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/init/special_highlight.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/init/special_highlight.vim')
-rw-r--r--vim/init/special_highlight.vim6
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 @@
5syntax enable 5syntax enable
6 6
7function! GetHighlightGroupName() 7function! 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
11endfunction 11endfunction
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