From 76ec64411495ad9cbe29f89e710c0f48482a9ada Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 11 May 2015 12:35:48 +0900 Subject: [PATCH] Force evaluation of &statusline before running installer Close #228 --- plug.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plug.vim b/plug.vim index d71f070..6d76755 100644 --- a/plug.vim +++ b/plug.vim @@ -764,6 +764,7 @@ function! s:update_impl(pull, force, args) abort call s:prepare() call append(0, ['', '']) normal! 2G + try | redraw | catch | endtry let s:clone_opt = get(g:, 'plug_shallow', 1) ? \ '--depth 1' . (s:git_version_requirement(1, 7, 10) ? ' --no-single-branch' : '') : ''