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.
现在我有map <F5> :w<CR>:!python %<CR>,如果我的脚本正在做长期工作,vim 会冻结。
map <F5> :w<CR>:!python %<CR>
我想将脚本的输出定向到拆分窗口。喜欢tail -f,但在 vim 中。
tail -f
是否有任何插件或功能来完成这项工作?
这实际上不在 Vim 的范围内。看看:help design-not,看看这个线程。
:help design-not
像往常一样,最好的方法是命令行。但是,如果您真的想这样做,那么您可以使用 tmux 和 vimux 插件在 tmux 会话中启动 python 进程。