From 13dcea2df13c13ceda109058bd77a2f521073dc5 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Sat, 15 Mar 2025 10:24:11 +0100 Subject: [PATCH] runtime(matchparen): line continuation causes failure in CI so let's remove the line continuation Signed-off-by: Christian Brabandt --- runtime/plugin/matchparen.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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