개발

[vim] 여러개 파일 열기(창분할)

팥빙구 2015. 3. 13. 18:12

vim으로 여러개의 파일을 열고 싶을 때 사용하는 대표적인 세가지 방법

수평분할

command line에서

vim -o <file1> <file2>

vim에서

:split <file> or :sp <file>
:<n>sp <file>

이렇게 하면 n행 크기만큼 분할

ctrl-w로 창 간 이동

수직분할

command line에서

vim -O <file1> <file2>

vim에서

:vsplit <file> or :vs <file>
:<n>vs <file>

n열로 분할

ctrl-w로 창 간 이동

탭분할

command line에서

vim -p <file1> <file2>

vim에서

:tabedit <file>
or
:tabe <file>

파일생성해서 열려면,

:tabnew <file>

차례대로,
탭닫기, 다음탭, 이전탭, n번째 탭으로 이동

:tabc
:tabn
:tabp
:tabm <n>