Main Lemma Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

c.vim 609B

123456789101112131415161718192021
  1. "===================================================================================
  2. "
  3. " FILE: c.vim
  4. " DESCRIPTION: syntax file
  5. " enable syntax based folding
  6. " part of the c-support plugin
  7. "
  8. " AUTHOR: Trevor Irons
  9. " EMAIL: tirons@mines.edu
  10. " COMPANY: FH Südwestfalen, Iserlohn
  11. " VERSION: 1.0
  12. " CREATED: 11.03.2006
  13. " REVISION: ---
  14. "===================================================================================
  15. "
  16. " fold C blocks
  17. "
  18. syn region cBlock start="{" end="}" transparent fold
  19. set foldmethod=syntax
  20. set foldlevel=999