v-yarotsky / related.vim

A better TDD workflow for VIM
http://blog.yarotsky.me/2013-05-05-related-vim
0 stars 0 forks source link

Add support for pipe + netcat #6

Open v-yarotsky opened 10 years ago

v-yarotsky commented 10 years ago

Right now I need to jump through hoops to launch specs on virtual machine from vim on host machine:

On host:

mkfifo testing
whilte true; do nc <vm ip> <port> < testing; done

On VM:

while true; do nc -l <port> | bash -l; done

In VIM:

:RelatedPipe testing

Gotta make it easier.

v-yarotsky commented 10 years ago

Depends on https://github.com/v-yarotsky/related.vim/issues/7 and https://github.com/v-yarotsky/related.vim/issues/4