csc.vim 734 B

12345678910111213141516171819202122232425262728
  1. " Vim filetype plugin file
  2. " Language: csc
  3. " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
  4. " Last Changed: 20 Jan 2009
  5. " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin
  6. if exists("b:did_ftplugin") | finish | endif
  7. let b:did_ftplugin = 1
  8. " Make sure the continuation lines below do not cause problems in
  9. " compatibility mode.
  10. let s:save_cpo = &cpo
  11. set cpo-=C
  12. if exists("loaded_matchit")
  13. let b:match_words=
  14. \ '\<fix\>:\<endfix\>,' .
  15. \ '\<if\>:\<else\%(if\)\=\>:\<endif\>,' .
  16. \ '\<!loopondimensions\>\|\<!looponselected\>:\<!endloop\>'
  17. endif
  18. " Undo the stuff we changed.
  19. let b:undo_ftplugin = "unlet! b:match_words"
  20. " Restore the saved compatibility options.
  21. let &cpo = s:save_cpo
  22. unlet s:save_cpo