목록utility 사용법/vim (12)
관심있는 것들 정리
1. Windows용 vim에 Vundle (plugin 관리를 위한 plugin)을 설치하기 위해서는 먼저 windows용 Git 설치가 필요하다 http://code.google.com/p/msysgit/downloads/list 최신 파일을 다운 받고 설치하면 된다 이 때 다음과 같이 Adjusting your PATH environment 항목의 옵션을 설치하면 된다. 정상적으로 설치되었는지 확인하려면 windows command프로그램을 열고 다음과 같이 입력해 결과를 확인하면 된다. C:\> git --version git version 1.7.4.msysgit.0 2. 기본적으로 Git를 설치하면 Curl이 설치된다. 이를 Vundle에서 이용하기 위해 curl.cmd라는 이름의 script..
vim으로 c 파일을 열 때 특정 plugin이 자동적으로 loading되도록 하려면 다음과 같이 하자 function! StartUpLoading_For_C() if filereadable("tags") " 현재 디렉토리에 tags 파일이 존재하면 Tlist plugin을 시작 au VimEnter * TlistOpen endif au VimEnter * NERDTree " NERDTree plugin 시작 endfunction autocmd FileType c call StartUpLoading_For_C() 만약 위 function이 diff 모드가 아닐 때만 동작하게 하려면 if &diff " check if vimdiff mode is on else autocmd FileType c call S..
.vimrc 파일 설정시 diff 모드에는 특정 기능이 동작하지 않도록 하고 싶을 때는 다음과 같이구분을 할 수 있다 if &diff " check if vimdiff mode is on " Do you setting here for Vim diff modeelse " Do you setting here for Vim non-diff modeendif