0
"(1)use 4 whitespace instead of tab
set cindent
set smartindent
set autoindent
"set softtabstop=4 shiftwidth=4 expandtab smarttab
"(2)use tab instead of 4 whitespace
set cindent
set smartindent
set autoindent
set tabstop=4 shiftwidth=4 noexpandtab
第一個設置是4個空格。如何設置vim使用選項卡而不是4個空格?
現在我的團隊使用選項卡,第二個設置在* .cpp * .h文件中正確工作,但仍然在* .py文件中顯示4個空白。
我不知道爲什麼......?
此博客顯示如何設置python縮進與4空格,我已經知道。我想知道如何設置與選項卡的Python縮進... – linrongbin