xref: /vim-8.2.3635/runtime/compiler/scdoc.vim (revision 6aa57295)
1" scdoc compiler for Vim
2" Compiler: scdoc
3" Maintainer: Greg Anders <[email protected]>
4" Last Updated: 2019-10-24
5
6if exists('current_compiler')
7    finish
8endif
9let current_compiler = 'scdoc'
10
11if exists(':CompilerSet') != 2
12    command -nargs=* CompilerSet setlocal <args>
13endif
14
15CompilerSet makeprg=scdoc\ <\ %\ 2>&1
16CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%#
17