관심있는 것들 정리

vim으로 c 파일 열 때 자동으로 plugin load하기 본문

utility 사용법/vim

vim으로 c 파일 열 때 자동으로 plugin load하기

내공강화 2012. 9. 23. 20:21

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

반응형