scdoc.vim 431 B

123456789101112131415161718
  1. " scdoc compiler for Vim
  2. " Compiler: scdoc
  3. " Maintainer: Gregory Anders <contact@gpanders.com>
  4. " Last Updated: 2019-10-24
  5. " Upstream: https://github.com/gpanders/vim-scdoc
  6. if exists('current_compiler')
  7. finish
  8. endif
  9. let current_compiler = 'scdoc'
  10. if exists(':CompilerSet') != 2
  11. command -nargs=* CompilerSet setlocal <args>
  12. endif
  13. CompilerSet makeprg=scdoc\ <\ %\ 2>&1
  14. CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%#