[Python-Dev] vim (was: PEP 7 updated) (original) (raw)
Brett Cannon brett at python.org
Mon May 10 23:14:52 CEST 2010
- Previous message: [Python-Dev] vim (was: PEP 7 updated)
- Next message: [Python-Dev] PEP 7 updated
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Mon, May 10, 2010 at 11:10, R. David Murray <rdmurray at bitdance.com>wrote:
On Mon, 10 May 2010 20:40:00 +0400, Oleg Broytman <phd at phd.pp.ru> wrote: > On Mon, May 10, 2010 at 04:09:06PM +0200, Ronald Oussoren wrote: > > Does anyone know of a way to teach vim that C sources in a python checkout should have 4-space indents without changing the defaults for other C files? > > BufReadPre /usr/local/src/Python//.c set sts=4 sw=4
Alternatively you could sniff the file for leading tabs and set the "filetype" or the tab setting based on that. I think Brett has a vimrc somewhere that does something like that.
Misc/Vim/python.vim does what you need to do. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20100510/a106989d/attachment-0001.html>
- Previous message: [Python-Dev] vim (was: PEP 7 updated)
- Next message: [Python-Dev] PEP 7 updated
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]