diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-11-20 08:53:12 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-20 09:27:36 +0100 |
commit | fd57f39766c9f26da739214288f90be74223c3cd (patch) | |
tree | 42715107bb0ea79e489b809d57b01e857a60934a /runtime/compiler/ruff.vim | |
parent | ac7e0ff32ff18be69e2469ff7fc66370be20a6e1 (diff) | |
download | rneovim-fd57f39766c9f26da739214288f90be74223c3cd.tar.gz rneovim-fd57f39766c9f26da739214288f90be74223c3cd.tar.bz2 rneovim-fd57f39766c9f26da739214288f90be74223c3cd.zip |
vim-patch:4927dae: runtime(compiler): fix escaping of arguments passed to :CompilerSet
See newly added help entry referring to option-backslash
closes: vim/vim#16084
https://github.com/vim/vim/commit/4927daef608d4bbcdce8a1098cdeeaed3112c849
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/compiler/ruff.vim')
-rw-r--r-- | runtime/compiler/ruff.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/compiler/ruff.vim b/runtime/compiler/ruff.vim index 11a69740d8..318f4fe5cb 100644 --- a/runtime/compiler/ruff.vim +++ b/runtime/compiler/ruff.vim @@ -2,6 +2,7 @@ " Compiler: Ruff (Python linter) " Maintainer: @pbnj-dragon " Last Change: 2024 Nov 07 +" 2024 Nov 19 by the Vim Project (properly escape makeprg setting) if exists("current_compiler") | finish | endif let current_compiler = "ruff" @@ -12,7 +13,7 @@ set cpo&vim " CompilerSet makeprg=ruff let &l:makeprg= 'ruff check --output-format=concise ' \ ..get(b:, 'ruff_makeprg_params', get(g:, 'ruff_makeprg_params', '--preview')) -exe 'CompilerSet makeprg='..escape(&l:makeprg, ' "') +exe 'CompilerSet makeprg='..escape(&l:makeprg, ' \|"') CompilerSet errorformat=%f:%l:%c:\ %m,%f:%l:\ %m,%f:%l:%c\ -\ %m,%f: let &cpo = s:cpo_save |