How can I redirect or pipe the output of an ex command into my current buffer or a file?
For example, I want to read the contents of all the registers into the current buffer, which in ex mode is shown using ":registers"
Thanks
|
|
The last command is very useful, since there are lots of options for redirection: to variables, to registers, how to append, further cornucopia. I still find it weird and annoying that it uses END that way, but since everything else that can follow PS AFAIK (which is pretty far in this case) there's no way to read it directly into the buffer: you have to store it in a register or a variable first. Check the help for the various options of how to do that. PPS If you do want to do this using a variable —maybe to encapsulate it in a function and avoid clobbering registers or global variables— you'll have to convert the multiline string that gets written to the variable into a list. EG
Otherwise (if you just do edit: as @Bill Odom mentions, using PPPSI've written a snippet to make this stuff more convenient. It declares a function The command parses the last series of non-space characters as a redirection target and passes that to the function, which does the boilerplate to redirect the command output to the redirection target. The command is everything after EG
There are a few limitations with this: for example you won't be able to write to a filename that contains a space. The upside to this is that you don't have to quote your command. I've got it posted on gist.github.com, and I'll try to keep it updated if I end up improving it. Or you can fork it yourself</noeuphemism>! Anyway the snippet is available here. It can be dropped into a .vimrc file or into a file in ~/.vim/plugins. |
||||
|
|
|
@intuited is right; the
That's not something you'll want to type very often, however, and it's not exactly amenable to a key map. I found myself doing this fairly often, so I wrote a function and a handful of commands to make it easier. As a bonus, I can now send command output to a new window or new tab as easily as inserting it into the current buffer. Here's the code (with a few command examples at the very end):
|
|||
|
|
See Capture ex command output at Vim Tips Wiki for more information :-) |
||||
|
|