Indentation width in command mode

I use Vim 7.3 on Windows 7 and have the following settings in my vimrc:

set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4

If I use Tab in 'insert mode' or >> in 'command mode' my text is indented by 4 spaces. But if I use >> in 'colon command mode' (I don't know if it's really called like that), for example with a range

:30,35>> 

the text is still indented by 8 spaces.

What is the right setting to change this to 4 spaces?


you're indenting twice silly. :30,35>

链接地址: http://www.djcxy.com/p/49448.html

上一篇: Vim的理想C设置程序

下一篇: 命令模式下的缩进宽度