Answers:
您可以执行以下命令:
该命令将是这样的:
:Rsplit command
要么
:Rtab command
在您中,.vimrc
您可以这样编写:
" execute a command and show its output in a split window
command! -nargs=* -complete=shellcmd Rsplit execute "new | r! <args>"
" execute a command and show its output in a new tab
command! -nargs=* -complete=shellcmd Rtab execute "tabnew | r! <args>"
您可以使用找到如何制作自己的命令:help :command
。
:!
命令行中将显示输出if ,只有一个,并且只能在屏幕底部。我能想到的最好的办法是在当前缓冲区下面创建一个新的缓冲区/:split ...