Monday, June 1, 2015

Re: How does vim determine the way the text is colored in the section of ":help group-name"?

On 31 May 2015, Peng Yu <pengyu.ut@gmail.com> wrote:
> Hi,
>
> I see the following text in ":help group-name" colored. But when
> I checked the file syntax.txt, I didn't see anything special for
> indicating the colors. Could anybody let me know how vim determines
> the colors? Thanks.
[...]

This function (that I picked up from somebody else a few years ago)
is pretty useful for showing the exact highlighting groups in use:

nnoremap <silent> <Leader>hi :call <SID>SynStack()<CR>
function! <SID>SynStack()
if !exists("*synstack")
return
endif
echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
endfunc

/lcd

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: