vim - 여러 개 파일을 각각 탭으로 열려먼

-p 옵션을 사용하면 된다.

vim -p *.c *.h

탭간 이동은 vim 에서 아래 도움말로 확인 할 수 있다.

:help tabn 


SWITCHING TO ANOTHER TAB PAGE:

Using the mouse: If the tab page line is displayed you can click in a tab page
label to switch to that tab page.  Click where there is no label to go to the
next tab page.  |'tabline'|

:tabn[ext]                              *:tabn* *:tabnext* *gt*
<C-PageDown>                            *CTRL-<PageDown>* *<C-PageDown>*
gt                                      *i_CTRL-<PageDown>* *i_<C-PageDown>*
                Go to the next tab page.  Wraps around from the last to the
                first one.

:tabn[ext] {count}
{count}<C-PageDown>
{count}gt       Go to tab page {count}.  The first tab page has number one.


:tabp[revious]                          *:tabp* *:tabprevious* *gT* *:tabN*
:tabN[ext]                              *:tabNext* *CTRL-<PageUp>*
<C-PageUp>                       *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
gT              Go to the previous tab page.  Wraps around from the first one
                to the last one.

:tabp[revious] {count}
:tabN[ext] {count}
{count}<C-PageUp>
{count}gT       Go {count} tab pages back.  Wraps around from the first one
                to the last one.

:tabr[ewind]                    *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
:tabfir[st]     Go to the first tab page.

                                                        *:tabl* *:tablast*
:tabl[ast]      Go to the last tab page.


Other commands:
                                                        *:tabs*
:tabs           List the tab pages and the windows they contain.
                Shows a ">" for the current window.
                Shows a "+" for modified buffers.


TAB 간 이동의 가장 손쉬운 방법

Contorl + PageUp
Contorl + PageDown 

'vim' 카테고리의 다른 글

vim modeline - 파일에 vim 설정을 기록  (0) 2011.11.29
Latest update: 2010. 12. 23. 09:39