blob: 74804ca6d066fcbcd452ec34371bb358c65721a7 [file] [log] [blame]
Bram Moolenaar7f7a8882020-08-09 20:05:41 +02001" Vim compiler file
2" Compiler: XO
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Doug Kearns408281e2024-04-04 22:00:58 +02004" Last Change: 2024 Apr 03
Bram Moolenaar7f7a8882020-08-09 20:05:41 +02005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "xo"
10
Bram Moolenaar7f7a8882020-08-09 20:05:41 +020011let s:cpo_save = &cpo
12set cpo&vim
13
14" CompilerSet makeprg=npx\ xo\ --reporter\ compact
15
16CompilerSet makeprg=xo\ --reporter\ compact
17CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ %m,
18 \%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ %m,
19 \%-G%.%#
20
21let &cpo = s:cpo_save
22unlet s:cpo_save