diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-08-21 00:29:40 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-08-21 09:14:17 +0200 |
commit | a691858326430d1d5462161fd105aa419d3f54f2 (patch) | |
tree | fe911590622f1b6e7645efd49fe498a2d5fbb474 | |
parent | 78e48cd9b5c8f8ac698fe545685f4abfcab08c03 (diff) | |
download | rneovim-a691858326430d1d5462161fd105aa419d3f54f2.tar.gz rneovim-a691858326430d1d5462161fd105aa419d3f54f2.tar.bz2 rneovim-a691858326430d1d5462161fd105aa419d3f54f2.zip |
vim-patch:5f5f283: runtime(pandoc): escape quotes in &errorformat for pandoc
closes: vim/vim#15535
https://github.com/vim/vim/commit/5f5f2832f5dcf845a93f7f62c1daf6cba9c17989
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
-rw-r--r-- | runtime/compiler/pandoc.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/compiler/pandoc.vim b/runtime/compiler/pandoc.vim index 68ac001b97..ecc935a836 100644 --- a/runtime/compiler/pandoc.vim +++ b/runtime/compiler/pandoc.vim @@ -52,8 +52,7 @@ execute 'CompilerSet makeprg=pandoc'..escape( \ ' --from='..b:pandoc_compiler_from . \ ' '..get(b:, 'pandoc_compiler_args', get(g:, 'pandoc_compiler_args', '')) . \ ' --output %:r:S.$* -- %:S', ' ') - -CompilerSet errorformat=%f,\ line\ %l:\ %m +CompilerSet errorformat=\"%f\",\ line\ %l:\ %m let &cpo = s:keepcpo unlet s:keepcpo |