|
| 1 | +Revision 2.5.6 (2007-02-04): |
| 2 | + |
| 3 | + - Applied patch by Pedro Algarvio to enable spell checking only for |
| 4 | + the right spots (strings and comments); |
| 5 | + |
| 6 | +Revision 2.5.5 (2006-09-26): |
| 7 | + |
| 8 | + - added new warnings (ImportWarning, UnicodeWarning) |
| 9 | + introduced in Python 2.5; |
| 10 | + |
| 11 | +Revision 2.5.4 (2006-05-11): |
| 12 | + |
| 13 | + - added highlighting for erroneous operators: &&, ||, ++, --, === |
| 14 | + (inspired by http://www.vim.org/tips/tip.php?tip_id=969, thanks |
| 15 | + Jeroen Ruigrok van der Werven for the link); |
| 16 | + - added highlighting for new 'with' statement and 'BaseException', |
| 17 | + 'GeneratorExit' exceptions introduced in Python 2.5; |
| 18 | + - added highlighting for 'OverflowWarning' exception which had been |
| 19 | + forgotten; |
| 20 | + - returned more robust recognition for function names; |
| 21 | + |
| 22 | +Revision 2.5.3: |
| 23 | + |
| 24 | + - fixed %-formatting highlighting for raw unicode strings; |
| 25 | + |
| 26 | +Revision 2.5.2: |
| 27 | + |
| 28 | + - slightly simplified option handling; |
| 29 | + - fixed regexp for indentation errors; |
| 30 | + - fixed highlighting for backslashed symbols inside strings; |
| 31 | + - added highlighting for trailing-space errors (triggered by new |
| 32 | + option: python_highlight_space_errors); |
| 33 | + - added highlighting for variable name errors; |
| 34 | + - added highlighting for hex number errors; |
| 35 | + |
| 36 | +Revision 2.5.1 (2005-03-13): |
| 37 | + |
| 38 | + - added new builtins 'all' and 'any' (Python 2.5a0) |
| 39 | + |
| 40 | +Revision 2.4.2 (2004-08-05): |
| 41 | + |
| 42 | + - added highlighting for new @decorator syntax introduced in python 2.4a2 |
| 43 | + |
| 44 | +Revision 2.4.1 (2004-03-17): |
| 45 | + |
| 46 | + - new versioning scheme (based on python version numbers); |
| 47 | + - added highlighting for new types/builtins introduced in python 2.4 |
| 48 | + (set, frozenset, reversed, sorted); |
| 49 | + - new option added: python_slow_sync (set this for slow but more |
| 50 | + robust syntax synchronization); |
| 51 | + - added highlighting for doctests; |
| 52 | + |
| 53 | +Revision 1.19: |
| 54 | + |
| 55 | + - new option added: python_highlight_indent_errors; |
| 56 | + - python_highlight_all now not override previously set options, |
| 57 | + for example code: |
| 58 | + let python_highlight_indent_errors = 0 |
| 59 | + let python_highlight_all = 1 |
| 60 | + set all highlight options except indentation errors highlighting option; |
| 61 | + |
| 62 | +Revision 1.17: |
| 63 | + |
| 64 | + - changed header, "Based on..." string added; |
| 65 | + |
| 66 | +Revision 1.16: |
| 67 | + |
| 68 | + - added basestring builtin; |
| 69 | + |
| 70 | +Revision 1.15 (first public revision). |
| 71 | + |
| 72 | + The changes since the original (vim6.1) python.vim are: |
| 73 | + |
| 74 | + - changed string highlighting; |
| 75 | + - enhanced special symbols highlighting inside strings; |
| 76 | + - enhanced constant numbers highlighting; |
| 77 | + - added optional highlighting for %-formatting inside strings; |
| 78 | + - added highlighting for error conditions (wrong symbols in source file, |
| 79 | + mixing spaces and tabs, wrong number values, |
| 80 | + wrong %-formatting inside strings); |
| 81 | + - added highlighting for magic comments: source code encoding |
| 82 | + and #! (executable) strings; |
| 83 | + - added highlighting for new exceptions and builtins introduced |
| 84 | + in python 2.3; |
0 commit comments