Writing :map and :map! to text file or something

2010-07-26 Thread Gary
How would you get the output of :map and :map! to save to a file? -- 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

Re: Writing :map and :map! to text file or something

2010-07-26 Thread Brett Stahlman
On Jul 26, 11:42 am, Gary furashg...@gmail.com wrote: How would you get the output of :map and :map! to save to a file? Gary, redir map_output.txt map redir END :help :redir Brett Stahlman -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the

Re: Writing :map and :map! to text file or something

2010-07-26 Thread Tony Mechelynck
On 26/07/10 18:42, Gary wrote: How would you get the output of :map and :map! to save to a file? see :help :redir For a list which wouldn't need to be fed back as input to Vim, :let save_more = more :set nomore :redir! ~/mappings.txt :0verbose map

Re: Writing :map and :map! to text file or something

2010-07-26 Thread Gary Furash
Just what I need. Thank you! Gary Furash | 520-907-2470 | furashg...@gmail.com On Mon, Jul 26, 2010 at 10:36 AM, Tony Mechelynck antoine.mechely...@gmail.com wrote: On 26/07/10 18:42, Gary wrote: How would you get the output of :map and :map! to save to a file? see :help :redir For a