DEV Community

Execute command line commands from inside vim

Igor Irianto on December 07, 2019

Follow @learnvim for more Vim tips and tricks! One vim command I have been experimenting with recently is bang (!) command to execute external com...
Collapse
 
jakehamilton profile image
Jake

Should note that :term is also a very useful command! You can move around in the terminal buffer like you'd expect in vim which makes it really convenient to have a full terminal that can easily move text between files and the shell.

Collapse
 
iggredible profile image
Igor Irianto

You're right! The terminal command :)
I like how we can still switch to normal mode while in :term, giving us more power!

 
iggredible profile image
Igor Irianto

Haha thanks! I am genuinely flattered :) I always love a good feedback from someone like you too!

Anyway, it just got me thinking what if we can use quickfix window to complement some command lines like !ls so we are less dependent on NERDTree... sorry for muttering, not really sure exactly what I'm trying to do either haha. Maybe I'll write another post someday if I think of this clearly!

Collapse
 
iggredible profile image
Igor Irianto

Haha, thank you Sang! I am always happy knowing that my post affects other readers 👍
I noticed you've reacted most of my vim posts too! 😁

Collapse
 
danielkun profile image
Daniel Albuschat

With :.! you can insert the result of the command into the current buffer (the file you are currently editing).

Collapse
 
iggredible profile image
Igor Irianto • Edited

I just tried it - this is awesome! Does :.!{cmd} work exactly the same as :r !{cmd} then? If not, what's the difference?

Collapse
 
danielkun profile image
Daniel Albuschat • Edited

Actually I didn't know about :r !{cmd}, so I'm not sure. From a quick test I noticed that :r inserts a newline above the content, while :.! does not. Other than that, dunno ¯\(ツ)/¯.

Thread Thread
 
iggredible profile image
Igor Irianto

Oh, that's an interesting behavior :) Even a newline makes a difference 😎

Collapse
 
vlasales profile image
Vlastimil Pospichal
:r !grep word file
:r !sqlite3 data.sqlite "select value from Snippet where key='word'"
:%!sort
:!php %
Collapse
 
iggredible profile image
Igor Irianto

Oh nice! I didn't think about sqlite and grep. Those two would be super handy.
Regarding sort, I am already used to vim's built-in sort in vim (:h sort) though :)