From: Brett Cannon Date: Fri, 26 May 2006 19:04:47 +0000 (+0000) Subject: Change C spacing to 4 spaces by default to match PEP 7 for new C files. X-Git-Tag: v2.5b1~441 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04f031d202543b4301715c6f28685acdcdbd4d1c;p=python Change C spacing to 4 spaces by default to match PEP 7 for new C files. --- diff --git a/Misc/Vim/vimrc b/Misc/Vim/vimrc index 7cd33dbfba..af60614b17 100644 --- a/Misc/Vim/vimrc +++ b/Misc/Vim/vimrc @@ -21,7 +21,7 @@ " Python: 4 spaces " C: tab (8 spaces) au BufRead,BufNewFile *.py,*pyw set shiftwidth=4 -au BufRead,BufNewFile *.c,*.h set shiftwidth=8 +au BufRead,BufNewFile *.c,*.h set shiftwidth=4 " Number of spaces that a pre-existing tab is equal to. " For the amount of space used for a new tab use shiftwidth.