Vim 7.3.315

My plugins all use naming conventions for variables.

:let

Will display all variables currently defined in Vim.

One thing I have always wanted to do is:
:let my_prefix.*

Or something like that to show all variables beginning with my_prefix.

The only way I have come up with a way to do this is:
:new
:redir @a
:let
:redir end
"ap
:v/^my_prefix/d

Which essentially does want I want, but is a real pushup.

Can any Vimmers suggest a more streamlined approach?

Thanks,
Dave


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

Reply via email to