just found this handy vi tip on reddit

2008-09-07

Sick of :wqing your shell/perl script in vi just to run it and then opening it again to fix a bug?

You can run it straight from vi by writing to the shell escape:

:w !ksh
:w !perl

etc…

Handy because it will leave you on the line that you are currently working on.

pip pip!