我目前的设置是8个空格;我该如何重新定义它呢?


当前回答

我基本的~/。Vimrc评论:

set number " show line number                                                                                           
set tabstop=2 " set display width of tab; 1 tab = x space with                                                           
set expandtab " transform tab to x space (x is tabstop)                                                               
set autoindent " auto indent; new line with number of space at the beginning same as previous                                                                      
set shiftwidth=2 " number of space append to lines when type >> 

其他回答

添加一行 将ts = 4 在 ~ /。每个用户的Vimrc文件 或 /etc/vimrc文件用于整个系统

对于永久的更改,创建文件~/.vim/plugin/tab_expander。用内容进行Vim

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

防止碰~/。Vimrc,从而保持其他默认设置不变。

确保vartabstop未设置

set vartabstop=

设置tabstop为4

set tabstop=4
:set sw=4

参见掌握VI编辑器

我基本的~/。Vimrc评论:

set number " show line number                                                                                           
set tabstop=2 " set display width of tab; 1 tab = x space with                                                           
set expandtab " transform tab to x space (x is tabstop)                                                               
set autoindent " auto indent; new line with number of space at the beginning same as previous                                                                      
set shiftwidth=2 " number of space append to lines when type >>