Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 VIM 运行交互式程序时,例如:
:!node server.js :!python my_app.py
该程序通过 等显示的消息console.log仅print在程序进程终止时以单个块的形式显示在 vim 上。这与直接在终端上运行它们不同,在终端上实时显示消息。如何解决这种行为?
console.log
print
使用 vim 8 的终端功能,您可以执行:term node server.jsor :term python my_app.py。
:term node server.js
:term python my_app.py
查看:help :terminal更多好东西。
:help :terminal