我目前正在使用vim并希望每次我需要自动添加(例如在javascript之后或在Python中冒号后)。出于某种原因,我尝试了autoindent和smartindent,但每个新行给了我2个标签而不是一个。它为什么这样做?我以为它只会插入一个标签。
我当前的〜/ .vimrc文件有:
set ts=4
set autoindent
set smartindent
filetype plugin indent on
答案 0 :(得分:5)
您还需要设置:
:set shiftwidth=4 softtabstop=4
tabstop仅用于真实“\ t”标签所需的列数:
:he shiftwidth
Number of spaces to use for each step of (auto)indent. Used for
|'cindent'|, |>>|, |<<|, etc.
When zero the 'ts' value will be used.
:he softtabstop
Number of spaces that a <Tab> counts for while performing editing
operations, like inserting a <Tab> or using <BS>. It "feels" like
<Tab>s are being inserted, while in fact a mix of spaces and <Tab>s is
used.
而tabstop:
:he tabstop
Number of spaces that a <Tab> in the file counts for. Also see
|:retab| command, and 'softtabstop' option.
作为奖励,这里有一些我为此设置的映射,当我需要处理那些不使用我最喜欢的默认扩展选项卡并且有4个空格缩进的项目时:
nmap <Leader>t2 :set expandtab tabstop=2 shiftwidth=2 softtabstop=2<CR>
nmap <Leader>t4 :set expandtab tabstop=4 shiftwidth=4 softtabstop=4<CR>
nmap <Leader>t8 :set expandtab tabstop=8 shiftwidth=8 softtabstop=4<CR>
nmap <Leader>T2 :set noexpandtab tabstop=2 softtabstop=2 shiftwidth=2<CR>
nmap <Leader>T4 :set noexpandtab tabstop=4 softtabstop=4 shiftwidth=4<CR>
nmap <Leader>T8 :set noexpandtab tabstop=8 softtabstop=8 shiftwidth=8<CR>
答案 1 :(得分:0)
我在.vimrc
中使用这个filetype plugin indent on
set smartindent
set autoindent
set shiftwidth=4
set expandtab
set tabstop=4
set softtabstop=4
expandtab会用空格替换制表符,我认为这对于编码来说是完美的。