一般情况是 TAB 和空格的问题。
虽然表面看来,缩进是一致的。
但是 TAB 没能替换为空格,从而导致问题。
解决:
$ sudo vim /etc/vim/vimrc.local
syntax on
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
原文地址:https://www.cnblogs.com/mouseleo/p/10662430.html
时间: 2024-11-05 19:02:48