Mercurial > vim
annotate runtime/compiler/stylelint.vim @ 32029:23e8d0371e35 v9.0.1346
patch 9.0.1346: Starlark files are not recognized
Commit: https://github.com/vim/vim/commit/ca06b30073de22dc120b532e90fbee2a10ef9772
Author: Amaan Qureshi <amaanq12@gmail.com>
Date: Thu Feb 23 15:38:49 2023 +0000
patch 9.0.1346: Starlark files are not recognized
Problem: Starlark files are not recognized.
Solution: Add patterns for Starlark files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/12049)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 23 Feb 2023 16:45:03 +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 |