1
我正在使用MacVim,嘗試將底部/命令行緩衝區移動到分割位置。我想讓我的代碼在左邊,命令行在右邊。命令行似乎不像常規分割。這對我來說很有用,因爲我有一個REPL插入到Mvim中,我希望垂直地看到輸出,並與我的代碼並行。任何方式將命令行移動到分割?Vim:如何將命令行移動到分割位置
我正在使用MacVim,嘗試將底部/命令行緩衝區移動到分割位置。我想讓我的代碼在左邊,命令行在右邊。命令行似乎不像常規分割。這對我來說很有用,因爲我有一個REPL插入到Mvim中,我希望垂直地看到輸出,並與我的代碼並行。任何方式將命令行移動到分割?Vim:如何將命令行移動到分割位置
命令行和命令行窗口都不能移動。它們將始終位於底部,橫跨整個寬度。
如果您嘗試發出類似<C-w>K
的窗口移動命令,Vim會以E11: Invalid in command-line window; <CR> executes, CTRL-C quits
抱怨。
繼:help E11
,下面給出解釋:
The command-line window is not a normal window. It is not possible to move to
another window or edit another buffer. All commands that would do this are
disabled in the command-line window. Of course it _is_ possible to execute
any command that you entered in the command-line window. Other text edits are
discarded when closing the window.
不,這是不可能的。但是在Google上幾分鐘會給你許多基於屏幕/基於tmux的解決方案,甚至還有一些純粹的基於Vim的解決方案。 – romainl