Mercurial > vim
annotate runtime/compiler/stylelint.vim @ 23571:b02ac00aacbf v8.2.2328
patch 8.2.2328: some test files may not be deleted
Commit: https://github.com/vim/vim/commit/48e11c10548782f573411b6302f77adb69c40401
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jan 11 18:47:00 2021 +0100
patch 8.2.2328: some test files may not be deleted
Problem: Some test files may not be deleted.
Solution: Add a delete() call, correct name. (Dominique Pell?, closes https://github.com/vim/vim/issues/7654)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 11 Jan 2021 19:00:07 +0100 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
21825 | 1 " Vim compiler file |
2 " Compiler: Stylelint | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2020 Jun 10 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "stylelint" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 " CompilerSet makeprg=npx\ stylelint\ --formatter\ compact | |
19 | |
20 CompilerSet makeprg=stylelint\ --formatter\ compact | |
21 CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ -\ %m, | |
22 \%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ -\ %m, | |
23 \%-G%.%# | |
24 | |
25 let &cpo = s:cpo_save | |
26 unlet s:cpo_save |