]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(compiler): improve svelte-check
authorKonfekt <Konfekt@users.noreply.github.com>
Thu, 27 Feb 2025 18:09:52 +0000 (19:09 +0100)
committerChristian Brabandt <cb@256bit.org>
Thu, 27 Feb 2025 18:09:52 +0000 (19:09 +0100)
closes: #16749

Signed-off-by: Konfekt <Konfekt@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/compiler/svelte-check.vim

index 883aefdbc46575c2ede695b8161591b4b446dcb7..bfffe28108ad4ffa0ddc3a196c495bbb22cc7fca 100644 (file)
@@ -1,19 +1,21 @@
 " Vim compiler file
 " Compiler:    svelte-check
 " Maintainer:  @Konfekt
-" Last Change: 2025 Feb 22
+" Last Change: 2025 Feb 27
 
 if exists("current_compiler") | finish | endif
 let current_compiler = "svelte-check"
 
 CompilerSet makeprg=npx\ svelte-check\ --output\ machine
-CompilerSet errorformat=%*\\d\ %t%*\\a\ \"%f\"\ %l:%c\ %m
+CompilerSet errorformat=%*\\d\ %t%*\\a\ \"%f\"\ %l:%c\ \"%m\",
+CompilerSet errorformat+=%-G%*\\d\ START\ %.%#,
+CompilerSet errorformat+=%-G%*\\d\ COMPLETED\ %.%#,
 CompilerSet errorformat+=%-G%.%#
 
 " " Fall-back for versions of svelte-check that don't support --output machine
 " " before  May 2020 https://github.com/sveltejs/language-tools/commit/9f7a90379d287a41621a5e78af5b010a8ab810c3
 " " which is before the first production release 1.1.31 of Svelte-Check
 " CompilerSet makeprg=npx\ svelte-check
-" CompilerSet errorformat=%E%f:%l:%c,
-" CompilerSet errorformat+=%+ZError\:\ %m,
-" CompilerSet errorformat+=%-G%.%#
+" CompilerSet errorformat=%A%f:%l:%c,
+" CompilerSet errorformat+=%C%t%*\\a\\:\ %m,
+" CompilerSet errorformat+=%-G%.%#,