runtime(matchparen): line continuation causes failure in CI Commit: https://github.com/vim/vim/commit/13dcea2df13c13ceda109058bd77a2f521073dc5 Author: Christian Brabandt <c...@256bit.org> Date: Sat Mar 15 10:24:11 2025 +0100
runtime(matchparen): line continuation causes failure in CI so let's remove the line continuation Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 8cc865f6d..1c8c9f329 100644 --- a/runtime/plugin/matchparen.vim +++ b/runtime/plugin/matchparen.vim @@ -7,8 +7,7 @@ " - this plugin was already loaded (or disabled) " - when 'compatible' is set " - Vim has no support for :defer -if exists("g:loaded_matchparen") || &cp || - \ exists(":defer") != 2 +if exists("g:loaded_matchparen") || &cp || exists(":defer") != 2 finish endif let g:loaded_matchparen = 1 -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1ttNqG-00BheV-Rl%40256bit.org.