]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(compiler): fix space escape in pyright
authorMao-Yining <mao.yining@outlook.com>
Sat, 7 Feb 2026 15:28:02 +0000 (15:28 +0000)
committerChristian Brabandt <cb@256bit.org>
Sat, 7 Feb 2026 15:28:02 +0000 (15:28 +0000)
closes: #19354

Signed-off-by: Mao-Yining <mao.yining@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/compiler/pyright.vim

index a7dad6f3776d2264199180f1816fbbbf6fa90231..eef6a9eb676264982596a16b4ebba3239dc79de7 100644 (file)
@@ -1,7 +1,7 @@
 " Vim compiler file
 " Compiler:     Pyright (Python Type Checker)
 " Maintainer:   @konfekt
-" Last Change:  2025 Dec 26
+" Last Change:  2025 Feb 7
 
 if exists("current_compiler") | finish | endif
 let current_compiler = "pyright"
@@ -18,7 +18,7 @@ CompilerSet errorformat=
       \%E%f:%l:%c\ -\ error:\ %m,
       \%W%f:%l:%c\ -\ warning:\ %m,
       \%N%f:%l:%c\ -\ note:\ %m,
-      \%C[ \t]\ %.%#,
+      \%C[\ \t]\ %.%#,
       \%-G%.%#
 
 let &cpo = s:cpo_save