csc.vim 697 B

123456789101112131415161718192021222324252627282930
  1. " Vim filetype plugin file
  2. " Language: csc
  3. "
  4. " This runtime file is looking for a new maintainer.
  5. "
  6. " Former maintainer: Dan Sharp
  7. " Last Changed: 20 Jan 2009
  8. if exists("b:did_ftplugin") | finish | endif
  9. let b:did_ftplugin = 1
  10. " Make sure the continuation lines below do not cause problems in
  11. " compatibility mode.
  12. let s:save_cpo = &cpo
  13. set cpo-=C
  14. if exists("loaded_matchit")
  15. let b:match_words=
  16. \ '\<fix\>:\<endfix\>,' .
  17. \ '\<if\>:\<else\%(if\)\=\>:\<endif\>,' .
  18. \ '\<!loopondimensions\>\|\<!looponselected\>:\<!endloop\>'
  19. endif
  20. " Undo the stuff we changed.
  21. let b:undo_ftplugin = "unlet! b:match_words"
  22. " Restore the saved compatibility options.
  23. let &cpo = s:save_cpo
  24. unlet s:save_cpo