본문 바로가기
IT/Server

vi editor options 옵션 명령어

by Jang HyunWoong 2016. 5. 10.

vi / vim mode

vi는 :set 명령어를 통해서 수 많은 options을 선택할 수 있습니다.


:set all - vi에서 사용할 수 있는 모든 option을 화면에 보이도록 합니다 .


 set 명령어

 set 줄임 명령어

 내용

:set autoindent

:set noautoindent

:set ai

:set noai

 autoindent모드를 켭니다. 

 autoindent모드를 끕니다.

:set shiftwidth = 3으로 설정

만약 자동적으로 intelligent를 사용하려면

:set smartindent 로 설정하면 됩니다.

:set backup = on

:set backup = off

:set bk = on

:set bk = off

 파일의 변화가 있을 때마다 백업파일을 만들 수 있습니다. 

:set number

:set nonumber

:set nu

:set nonu

 라인 넘버를 사용/미사용 합니다. 

:set showmatch

:set noshowmatch

 

 괄호를 쓴 후에 커서를 괄호 뒤에 위치하게 합니다. 

:syntax on

:syntax off

 

 highlighting color를 설정할 수 있습니다. 

:syntax=c++ // 등 (xml, html, c, c++...)

 :set linelimit = 10000

 

 editor의 size설정

:set bg = dark

:set bg = light

 

 background color설정

 

반응형