[Q] vim 설정
vi 설정에 대해 궁금해서 글을 올립니다.
vi 6.0를 잘 쓰고 있다가, vim 6.1로 새롭게 설치를 하였습니다.
그리고 .vimrc 파일 다음과 같이 하였습니다.
set fileencoding=korea
"set magic
"set noshowcmd
"set nowrap
"set showmode
"set nobackup
"set tabstop=4
"set shiftwidth=4
set title
set noicon
set nocompatible
set background=dark
"syntax on
map <F1> K " 도움말
map <F2> :w!<CR> " 저장하기
map <F3> :30vs ./<CR> " 탐색기사용
map <F4> :only<CR> " 창 최대화
map <F5> v]}zf " 함수/블록 폴딩
map <F6> za " 언폴딩
map <F7> [i " 함수의 prototype 보이기
map <F8> ^] " 전역변수 추적하기
map <F9> ^T " 전역변수 추적후 이전으로 돌아가기
map <F10> :! gcc -o %< % 2>%<err.log<CR> " 컴파일 하기
map <F11> :new %<Err.log<CR> " 에러보기
map <F12> :! ./%<<CR> " 실행하기
au BufNewFile,BufReadPost *.c,*.h set cindent shiftwidth=4 number tabstop=4 ic vb
au BufNewFile,BufReadPost *.c,*.h syntax on
au BufNewFile,BufReadPost *.cpp,*.cc set cindent shiftwidth=4 number tabstop==4 ic vb
au BufNewFile,BufReadPost *.cpp,*.cc*.h syntax on
"au BufNewFile,BufReadPost *.java set cindent shiftwidth=4
"au BufNewFile,BufReadPost *.php3 set cindent shiftwidth=4
"au BufNewFile,BufReadPost *.pl set cindent shiftwidth=4
"au BufNewFile,BufReadPost *.tex set autoindent
그런데, vi 실행할 때 마다 다음과 같은 메세지가 나옵니다.
전의 vim 6.0 에서는 나오지 않았는데 말이죠.. 알려주십시요..
Error detected while processing /root/.vimrc:
line 30:
E319: Sorry, the command is not available in this version: au BufNewFile,BufReadPost *.c,*.h^Iset cindent shiftwidth=4 number tabstop=4 ic vb
line 31:
E319: Sorry, the command is not available in this version: au BufNewFile,BufReadPost *.c,*.h^Isyntax on^I
line 32:
E319: Sorry, the command is not available in this version: au BufNewFile,BufReadPost *.cpp,*.cc^Iset cindent shiftwidth=4 number tabstop==4 ic vb
line 33:
E319: Sorry, the command is not available in this version: au BufNewFile,BufReadPost *.cpp,*.cc*.h^Isyntax on^
실행시키신 vi의 버전이 autocmd 기능을 빼고 컴파일된 것일 수 있
실행시키신 vi의 버전이 autocmd 기능을 빼고 컴파일된 것일 수 있습니다. vi를 실행시키실 때 쓰신 동일한 명령에 --version 옵션을 붙여서 확인해보세요.
그리고 어느 버전에서도 vimrc 파일 처리시 오류가 나지 않게 하려면 다음과 같이 하셔야합니다.
댓글 달기