Bram Moolenaar | 6aa5729 | 2021-08-14 21:25:52 +0200 | [diff] [blame] | 1 | " scdoc compiler for Vim |
2 | " Compiler: scdoc | ||||
3 | " Maintainer: Greg Anders <greg@gpanders.com> | ||||
4 | " Last Updated: 2019-10-24 | ||||
5 | |||||
6 | if exists('current_compiler') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let current_compiler = 'scdoc' | ||||
10 | |||||
11 | if exists(':CompilerSet') != 2 | ||||
12 | command -nargs=* CompilerSet setlocal <args> | ||||
13 | endif | ||||
14 | |||||
15 | CompilerSet makeprg=scdoc\ <\ %\ 2>&1 | ||||
16 | CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%# |