This is related to this question: ViM: How to redirect ex command output into current buffer or file?
However, the problem with using :redir is that it causes 3 or 4 extra newlines in front of the output, and they appear to be difficult to remove using the substitute function.
For example, if I do the following:
:redir @a
:pwd
:redir END
The contents of @a consist of three blank lines and then the normal expected output.
I tried to post process with something like this:
:let @b = substitute(@a, '\s*\(.\{-}\)\s*', '\1', '')
But the result is that @b has the same contents as @a.
Does anyone know a more effective (i.e. working) way to postprocess, or a replacement for :redir that doesn't have those extra lines?
:let @b = substitute(@a, '\n', '', 'g')? – El Isra Dec 10 '11 at 0:34