2017-09-14 14 views
1

아래쪽/명령 줄 버퍼를 분할로 이동하려고 MacVim을 사용하고 있습니다. 내 코드를 왼쪽에두고 싶습니다. 명령 줄은 오른쪽에 있습니다. 명령 줄은 규칙적인 분할처럼 작동하지 않습니다. REPL을 Mvim에 넣었고 출력을 세로로, 내 코드와 나란히보고 싶기 때문에 이것은 나에게 유용 할 것입니다. 명령 줄을 분할로 이동하는 방법은 무엇입니까?Vim : 명령 줄을 분할로 이동하는 방법

+0

없음. 그러나 몇 분만에 Google에서 많은 스크린/tmux 기반 솔루션과 순수하게 Vim 기반 솔루션을 제공합니다. – romainl

답변

2

명령 줄이나 명령 줄 창을 이동할 수 없습니다. 그들은 항상 너비 전체에 걸쳐 바닥에 위치 할 것입니다.

<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.