답변:
행동을 바꾸는 대신 (오류가 발생하기 쉽다).
이 파일 형식에 대해 vim을 다르게 작동하도록 설정했습니다.
일반적인 편집에서는 탭을 확장합니다. 그러나 특히 make
파일의 경우 noexpandtab
탭이 유지되도록 설정했습니다 .
~ / .vimrc 파일에 다음을 추가하십시오.
" Normal action
set expandtab
if has("autocmd")
" If the filetype is Makefile then we need to use tabs
" So do not expand tabs into space.
autocmd FileType make set noexpandtab
endif
<c-v>009
탭 키 또는 하드 코어 ASCII 순수 주의자가 깨진 경우 :-)