2016-10-01 51 views
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個空白。

我不知道爲什麼......?

回答

1

入住此博客條目:http://henry.precheur.org/vim/python.html

文件類型插件文件夾創建適當的文件將識別任何Python文件的選項。

+0

此博客顯示如何設置python縮進與4空格,我已經知道。我想知道如何設置與選項卡的Python縮進... – linrongbin

相關問題