tcl.vim 414 B

123456789101112131415161718
  1. " Vim compiler file
  2. " Compiler: tcl
  3. " Maintainer: Doug Kearns <dougkearns@gmail.com>
  4. " Last Change: 2004 Nov 27
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "tcl"
  9. if exists(":CompilerSet") != 2 " older Vim always used :setlocal
  10. command -nargs=* CompilerSet setlocal <args>
  11. endif
  12. CompilerSet makeprg=tcl
  13. CompilerSet errorformat=%EError:\ %m,%+Z\ %\\{4}(file\ \"%f\"\ line\ %l),%-G%.%#