annotate runtime/compiler/jest.vim @ 28877:f13fcdacb57f v8.2.4961

patch 8.2.4961: build error with a certain combination of features Commit: https://github.com/vim/vim/commit/9f28eeb694cec8f5019b8fbde3f92f4a90dc5006 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 16 10:04:51 2022 +0100 patch 8.2.4961: build error with a certain combination of features Problem: Build error with a certain combination of features. Solution: Adjust #if. (John Marriott)
author Bram Moolenaar <Bram@vim.org>
date Mon, 16 May 2022 11:15:05 +0200
parents c968191a8557
children e1df51f68736
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim compiler file
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Compiler: Jest
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
4 " Last Change: 2021 Nov 20
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("current_compiler")
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let current_compiler = "jest"
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 command -nargs=* CompilerSet setlocal <args>
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 endif
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 let s:cpo_save = &cpo
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 set cpo&vim
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
18 " CompilerSet makeprg=npx\ --no-install\ jest\ --no-colors
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 CompilerSet makeprg=jest\ --no-colors
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
21 CompilerSet errorformat=%-A\ \ ●\ Console,
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
22 \%E\ \ ●\ %m,
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 \%Z\ %\\{4}%.%#Error:\ %f:\ %m\ (%l:%c):%\\=,
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 \%Z\ %\\{6}at\ %\\S%#\ (%f:%l:%c),
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 21825
diff changeset
25 \%Z\ %\\{6}at\ %\\S%#\ %f:%l:%c,
21825
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 \%+C\ %\\{4}%\\w%.%#,
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 \%+C\ %\\{4}%[-+]%.%#,
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 \%-C%.%#,
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 \%-G%.%#
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 let &cpo = s:cpo_save
0db0640e16e0 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 unlet s:cpo_save