Read command line output into buffer
Sometimes you need some information from outside of vim in your vim buffer. A list of all the models in rails perhaps?
:read !ls app/models
Anything to the right of the bang(!) will be executed via the shell and everything given to standard out by the program will be read into the buffer.
Tweet