Mercurial > vim
annotate runtime/compiler/stylelint.vim @ 24758:857881ec1cb5 v8.2.2917
patch 8.2.2917: spellfile functionality not fully tested
Commit: https://github.com/vim/vim/commit/bb162367ac77db877586086d7456685f2aeb8754
Author: Dominique Pelle <dominique.pelle@gmail.com>
Date: Mon May 31 20:04:07 2021 +0200
patch 8.2.2917: spellfile functionality not fully tested
Problem: Spellfile functionality not fully tested.
Solution: Add tests for SFX with removal of characters, spelling
suggestions with NOBREAK and others. (Dominique Pell?,
closes #8293)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 31 May 2021 20:15:02 +0200 |
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 |