runtime(matchparen): line continuation causes failure in CI
so let's remove the line continuation
Signed-off-by: Christian Brabandt <cb@256bit.org>
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index 8cc865f..1c8c9f3 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