linux - How to make VIM receive and display the output of a program it is running? -
when run interactive program using vim, example with:
:!node server.js :!python my_app.py
the messages displayed program via console.log
, print
etc., shown on vim when program's process terminates, in single chunk. different running them directly on terminal, messages shown in real time. how fix behavior?
Comments
Post a Comment