On 2009-10-02, [email protected] wrote:
> Hi,
>
> is it possible to get the output of -- for example --
> : verbose map
> without using a temporary file direct into a buffer?
You can't redirect the output of a message into a buffer, but you
can redirect it into a register, then paste that register into a
buffer.
:set nomore
:redir @a
:verbose map
:redir END
:set more
:new
:put a
See
:help redir
Regards,
Gary
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---