Bram Moolenaar | 388a5d4 | 2020-05-26 21:20:45 +0200 | [diff] [blame] | 1 | " Vim compiler file |
2 | " Compiler: Standard for JavaScript | ||||
3 | " Maintainer: Romain Lafourcade <romainlafourcade@gmail.com> | ||||
4 | " Last Change: 2020 May 17 | ||||
5 | |||||
6 | if exists("current_compiler") | ||||
7 | finish | ||||
8 | endif | ||||
9 | let current_compiler = "standard" | ||||
10 | |||||
11 | if exists(":CompilerSet") != 2 | ||||
12 | command -nargs=* CompilerSet setlocal <args> | ||||
13 | endif | ||||
14 | |||||
15 | CompilerSet makeprg=standard | ||||
16 | CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%# |