Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Highlighting python code blocks in vim
  2. try:
  3. *   while True:
  4. *   *   for foo in bar:
  5. *   *   *   do()
  6. *   if something:
  7. *   *   done()
  8. except bla:
  9. *   exit()
  10.        
  11. :set listchars=tab:*     " Be careful : there is a space after the backslash
  12. :set list
  13.        
  14. :highlight SpecialKey ctermfg=Cyan