如何正确设置VIM自动缩进来编辑Python文件 – * .py

我麻烦设置VIM(7.1.xxx)编辑python文件。 缩进似乎被破坏(最佳4个空格)。 我跟着我通过Googlefind的一些教程。 仍然没有效果:/请帮助。

我在我的MacBook上使用这个:

" configure expanding of tabs for various file types au BufRead,BufNewFile *.py set expandtab au BufRead,BufNewFile *.c set noexpandtab au BufRead,BufNewFile *.h set noexpandtab au BufRead,BufNewFile Makefile* set noexpandtab " -------------------------------------------------------------------------------- " configure editor with tabs and nice stuff... " -------------------------------------------------------------------------------- set expandtab " enter spaces when tab is pressed set textwidth=120 " break lines when line length increases set tabstop=4 " use 4 spaces to represent tab set softtabstop=4 set shiftwidth=4 " number of spaces to use for auto indent set autoindent " copy indent from current line when starting a new line " make backspaces more powerfull set backspace=indent,eol,start set ruler " show line and column number syntax on " syntax highlighting set showcmd " show (partial) command in status line 

(编辑只显示与缩进/制表符有关的东西)

我用:

 $ cat ~/.vimrc syntax on set showmatch set ts=4 set sts=4 set sw=4 set autoindent set smartindent set smarttab set expandtab set number 

但是我要去尝试达人的作品

我使用python回购中的vimrc和其他东西:

http://svn.python.org/projects/python/trunk/Misc/Vim/vimrc

我也补充一点

 set softtabstop=4 

我在这里我的旧configuration,我正在更新

确保您正在编辑VIM的正确configuration文件。 特别是如果您使用的是Windows,那么可以将文件命名为_vimrc而不是其他平台上的.vimrc。

在vimtypes

:help vimrc

并检查你的path到_vimrc / .vimrc文件

:echo $HOME

:echo $VIM

确保你只使用一个文件。 如果你想将你的configuration分割成更小的块,你可以从你的_vimrc文件中获取其他文件。

:help source

更高级的python编辑考虑安装simplefold vim插件。 它允许您使用正则expression式进行高级代码折叠。 我用它来折叠我的类和方法定义,以加快编辑速度。

一个更简单的选项:只需在/ etc / vim / vimrc文件中取消注释以下configuration部分(最初被注释掉):

  if has("autocmd") filetype plugin indent on endif