Saturday, November 21, 2015

Re: Question about highlighting all matches of a local variable within a C/C++ subroutine

John Fishburn wrote:
> I know that
> .set hlsearch
> will highlight all matches of search patterns.
>
> My question is, can this highlighting be done only for occurrences of a local variable within a C/C++ subroutine? E.g. highlight all occurrences of 'i' that are local to a subroutine but not those outside.
>
Try funcsrch (get it from
http://www.drchip.org/astronaut/vim/index.html#FUNCSRCH)

To do what you want:

:set hls
:FS \<varname\>

Regards,
Chip Campbell

--
--
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: