TODO.txt 814B

1234567891011121314151617181920212223242526
  1. Now
  2. ===
  3. - It seems python.vim doesn't highlight special characters inside strings by
  4. default but only when reloaded? Or maybe only when set to Python 2
  5. by default?
  6. - Add support for slice syntax:
  7. http://img155.imageshack.us/img155/7767/screenshotgs.png
  8. - When we check spelling we don't need to check the whole strings only the
  9. content. For example we don't need to check 'u' for spelling in strings
  10. like this: u"Some text";
  11. Later
  12. =====
  13. - Need more accurate way to handle indentation errors. For example
  14. mixing spaces and tabs may be used for pretty formatting;
  15. - Need more checks for errors like: absent brackets, absent quotes,
  16. back slash at the end of strings;
  17. - pythonError tips from
  18. http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/ (reported by
  19. Giuliani Deon Sanches)