0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00

runtime(matchparen): line continuation causes failure in CI

so let's remove the line continuation

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt 2025-03-15 10:24:11 +01:00
parent 63a885b650
commit 13dcea2df1
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09

View 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