Avoid line continuations for 'compatible' interop

This commit is contained in:
Tim Pope
2017-08-04 19:36:41 -04:00
parent ddfb1f14d7
commit e7857bed4e
+1 -3
View File
@@ -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