Bram Moolenaar | 9b03d3e | 2022-08-30 20:26:34 +0100 | [diff] [blame] | 1 | " Vim compiler file |
2 | " Compiler: raco test (Racket command-line tools) | ||||
3 | " Maintainer: D. Ben Knoble <ben.knoble+github@gmail.com> | ||||
4 | " URL: https://github.com/benknoble/vim-racket | ||||
5 | " Last Change: 2022 Aug 12 | ||||
6 | |||||
7 | let current_compiler = 'racotest' | ||||
8 | |||||
9 | if exists(":CompilerSet") != 2 | ||||
10 | command -nargs=* CompilerSet setlocal <args> | ||||
11 | endif | ||||
12 | |||||
13 | CompilerSet makeprg=raco\ test\ % | ||||
14 | CompilerSet errorformat=location:%f:%l:%c |