annotate runtime/compiler/eslint.vim @ 26540:682ff45f289f
v8.2.3799
patch 8.2.3799: edit test hangs or fails
Commit: https://github.com/vim/vim/commit/80d60910ff493f7b8ea52156e4c7df7e70a348c6
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 13 19:14:52 2021 +0000
patch 8.2.3799: edit test hangs or fails
Problem: Edit test hangs or fails.
Solution: Do not rethrow an exception when inside try/catch.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 13 Dec 2021 20:15:03 +0100 |
parents |
bbca88cd13d5 |
children |
e1df51f68736 |
rev |
line source |
20552
|
1 " Vim compiler file
|
|
2 " Compiler: ESLint for JavaScript
|
|
3 " Maintainer: Romain Lafourcade <romainlafourcade@gmail.com>
|
21991
|
4 " Last Change: 2020 August 20
|
20552
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "eslint"
|
|
10
|
|
11 if exists(":CompilerSet") != 2
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
21991
|
15 CompilerSet makeprg=npx\ eslint\ --format\ compact
|
20552
|
16 CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%#
|