现在是vi中用tab,结果缩进了8个字符:
希望改为:
把vi中的tab的空格改为4个空格
vi tab 4 space
结果又出错:
[无需解决]source /etc/vimrc出错:/etc/vimrc:65: unmatched ‘
https://www.crifan.com/souce_etc_vimrc_unmatched
编辑配置文件:
vim /etc/vimrc
去添加:
set tabstop=4 set shiftwidth=4 " Indents will have a width of 4 set softtabstop=4 " Sets the number of columns for a TAB set expandtab " Expand TABs to spaces |
然后结果用vi,还是没用,问题依旧。
但是用vim去编辑,就可以了:
并且也带语法高亮的。
-》以后,不要用vi,而改用vim了。
既有语法高亮,tab也是4个空格宽度,而不是8个空格了。
转载请注明:在路上 » [基本解决]vi中tab默认为8个空格