TODO.txt 768B

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