Skip to content

Instantly share code, notes, and snippets.

@saihoooooooo
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save saihoooooooo/5b26b71a1e7bd10b305f to your computer and use it in GitHub Desktop.

Select an option

Save saihoooooooo/5b26b71a1e7bd10b305f to your computer and use it in GitHub Desktop.
ハイライト構文を取得
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