I've troubles setting VIM (7.1.xxx) for editing python files. Identing seems broken (optimal 4 spaces). I've followed some tutorials I found via google. Still no effect :/ Please help.
|
5
|
|||||
|
|
|
|
||||||||
|
|
|
I found this page very helpful: |
||
|
|
|
|
for more advanced python editing consider installing the simplefold vim plugin. it allows you do advanced code folding using regular expressions. i use it to fold my class and method definitions for faster editing. |
||
|
|
|
|
Ensure you are editing the correct configuration file for VIM. Especially if you are using windows, where the file could be named _vimrc instead of .vimrc as on other platforms. In vim type
and check your path to the _vimrc/.vimrc file with
Make sure you are only using one file. If you want to split your configuration into smaller chunks you can source other files from inside your _vimrc file.
|
||
|
|
|
|
vim test.py [insert] !/usr/bin/pythonfor x in range(1,10):[here enter should get cursor to the next line, and ident 4 spaces] [doesn't work, TAB should be 4 spaces, it's not] :( On my laptop it's the default behavior for Vim in Debian Etch and Fedora 9 Sulphur. |
||
|
|
|
|
Usually the default configuration is fine so please detail your problem and if possible include your configuration and where you got it from. |
||
|
|
|
|
I use this on my macbook:
(edited to only show stuff related to indent / tabs) |
||
|
|
