관심있는 것들 정리
vim으로 c 파일 열 때 자동으로 plugin load하기 본문
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 StartUpLoading_For_C()
endif
반응형
'utility 사용법 > vim' 카테고리의 다른 글
vim script를 이용해서 compile 편하게 하려했는데.. (0) | 2012.12.30 |
---|---|
clearcase view이름을 vim title로 설정하기 (0) | 2012.09.23 |
windows vim에 Vundle plugin 설치 (1) | 2012.09.23 |
vim시작시 diff 모드 인지 아닌지 구분 (0) | 2012.09.23 |
vim이 python이나 perl 지원하는지 체크 (0) | 2012.09.23 |