当前位置:  开发笔记 > 编程语言 > 正文

如何正确设置VIM自动注册以编辑Python文件 - *.py

如何解决《如何正确设置VIM自动注册以编辑Python文件-*.py》经验,为你挑选了3个好方法。

我很难设置VIM(7.1.xxx)来编辑python文件.缩进似乎被打破(最佳4个空格).我已经按照我通过Google找到的一些教程进行了操作.仍然没有效果:/请帮助.



1> Daren Thomas..:

我在我的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 text break lines when line length increases
set tabstop=4           " use 4 spaces to represent tab
set softtabstop=4
set shift 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

(编辑为仅显示与缩进/制表符相关的内容)



2> thanos..:

我用:

$ 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

但是我要尝试达人的参赛作品


请注意,```smartindent```仅适用于编辑C文件,而不适用于编辑Python文件(至今已被弃用;请参阅http://stackoverflow.com/a/234578/37639).

3> Teddy Belay..:

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

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

推荐阅读
贴进你的心聆听你的世界
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有