Yang Zhang wrote:
> Hi, can I have the tag stack always displayed in a window, instead of
> repeatedly bringing it up with :tags?
>
>
I'm sure it can be done. As some hints on how to do this;
* autocmd and CursorMove -- every time the cursor moves have vim call
a function which will update a window
* that function for updating: use
redir => tagsout
tags
redir END
for example, to get the current output of tags
* then your function should clear some window you've dedicated for the
purpose and dump the latest tagsout to it
Regards,
Chip Campbell
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---