Last active
August 29, 2015 14:03
-
-
Save saihoooooooo/5b26b71a1e7bd10b305f to your computer and use it in GitHub Desktop.
ハイライト構文を取得
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function! s:GetHighlight(group_name) | |
| redir => hl | |
| silent execute 'highlight ' . a:group_name | |
| redir END | |
| return substitute(substitute(hl, '[\r\n]', '', 'g'), 'xxx', '', '') | |
| endfunction | |
| function s:hoge() | |
| let old = s:GetHighlight('Cursor') | |
| highlight Cursor guibg=NONE | |
| execute 'highlight ' . old | |
| endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment