]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(matchparen): line continuation causes failure in CI
authorChristian Brabandt <cb@256bit.org>
Sat, 15 Mar 2025 09:24:11 +0000 (10:24 +0100)
committerChristian Brabandt <cb@256bit.org>
Sat, 15 Mar 2025 09:24:11 +0000 (10:24 +0100)
so let's remove the line continuation

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/plugin/matchparen.vim

index 8cc865f6d2144d21f501d27296089eb88b6cc865..1c8c9f3294d3673fbcb4763760f19ef52357c5e6 100644 (file)
@@ -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