From: Christian Brabandt Date: Sat, 15 Mar 2025 09:24:11 +0000 (+0100) Subject: runtime(matchparen): line continuation causes failure in CI X-Git-Tag: v9.1.1207~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13dcea2df13c13ceda109058bd77a2f521073dc5;p=thirdparty%2Fvim.git runtime(matchparen): line continuation causes failure in CI so let's remove the line continuation Signed-off-by: Christian Brabandt --- diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 8cc865f6d2..1c8c9f3294 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