From e7857bed4e0705f91f781dbe99706f07d08d104b Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 4 Aug 2017 19:36:41 -0400 Subject: [PATCH] Avoid line continuations for 'compatible' interop --- autoload/pathogen.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autoload/pathogen.vim b/autoload/pathogen.vim index 2ec30e1..3582fbf 100644 --- a/autoload/pathogen.vim +++ b/autoload/pathogen.vim @@ -104,9 +104,7 @@ function! pathogen#is_disabled(path) abort return 1 endif let sep = pathogen#slash() - let blacklist = - \ get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) + - \ pathogen#split($VIMBLACKLIST) + let blacklist = get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) + pathogen#split($VIMBLACKLIST) if !empty(blacklist) call map(blacklist, 'substitute(v:val, "[\\/]$", "", "")') endif