summaryrefslogtreecommitdiffstats
path: root/Misc/Vim
Commit message (Collapse)AuthorAgeFilesLines
* Make python.vim output more deterministic.Brett Cannon2006-09-202-32/+32
|
* Have pre-existing C files use 8 spaces indents (to match old PEP 7 style), butBrett Cannon2006-08-311-2/+3
| | | | have all new files use 4 spaces (to match current PEP 7 style).
* Fix comment about indentation level in C files.Brett Cannon2006-08-311-1/+1
|
* Remove remaining references to OverflowWarning.Georg Brandl2006-07-051-1/+1
|
* Change C spacing to 4 spaces by default to match PEP 7 for new C files.Brett Cannon2006-05-261-1/+1
|
* Update for 'ImportWarning'George Yoshida2006-05-161-3/+3
|
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-2/+0
| | | | | | | | discussion. There are two places of documentation that still mention __context__: Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without spending a whole lot of time thinking about it; and whatsnew, which Andrew usually likes to change himself.
* Update for 'with' statement.Brett Cannon2006-03-013-17/+24
|
* Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditionalBrett Cannon2006-03-011-4/+1
| | | | expression for the hell of it.
* Remove line meant to test trailing whitespace since that kind of whitespace isBrett Cannon2006-02-261-19/+40
| | | | | | automatically removed. Also annotate what each line is meant to test.
* Whitespace normalization.Tim Peters2006-02-262-2/+2
|
* Move the vimrc file to the newly created Vim/ directory.Brett Cannon2006-02-251-0/+95
|
* Add a script that auto-generates a Vim syntax highlighting file for Python.Brett Cannon2006-02-253-0/+413
Just symlink or copy python.vim to ~/.vim/syntax/ . Also included is a sample Python file with basic expressions to make sure they are highlighted. Also add a Vim directory in Misc to hold all Vim configuration files.