Answers:
而不是更改您的行为(容易出错)。
我将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
在Tab键损坏或ASCII纯粹主义者顽固的情况下:-)