Python 파일 (* .py)을 편집하기 위해 Vim (7.1.xxx)을 설정하는 데 문제가 있습니다. 들여 쓰기가 끊어진 것 같습니다 (최적 4 칸). Google을 통해 찾은 몇 가지 자습서를 따랐습니다. 여전히 효과가 없습니다 : / 도와주세요.
답변:
내 macbook에서 이것을 사용합니다.
" configure expanding of tabs for various file types
au BufRead,BufNewFile *.py set expandtab
au BufRead,BufNewFile *.c set expandtab
au BufRead,BufNewFile *.h set expandtab
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
하지만 저는 Daren의 항목을 시도해 볼 것입니다.
smartindent
C 파일이 아닌 파이썬 파일을 편집에만 적합 (어쨌든 지금에 의해 사용되지는; 참조 stackoverflow.com/a/234578/37639을 ).
나는 다른 것들 중에서 python repo에서 vimrc를 사용합니다.
http://svn.python.org/projects/python/trunk/Misc/Vim/vimrc
나는 또한 추가
set softtabstop=4
Daren과 Thanos가 제안한 솔루션을 결합하면 좋은 .vimrc 파일이 있습니다.
-----
" 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
set smartindent
set smarttab
set expandtab
set number
" 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
고급 파이썬 편집을 위해 simplefold vim 플러그인 설치를 고려하십시오 . 정규식을 사용하여 고급 코드 접기를 수행 할 수 있습니다. 빠른 편집을 위해 클래스 및 메서드 정의를 접는 데 사용합니다.