From cabaf7b4312b4afbade0eb6bd10c09ae0133fd9d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 15 Sep 2014 21:02:08 +0900 Subject: [PATCH] Use blackhole register when deleting lines --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 59f2d22..6bf82aa 100644 --- a/plug.vim +++ b/plug.vim @@ -626,7 +626,7 @@ function! s:update_impl(pull, force, args) abort catch let lines = getline(4, '$') let printed = {} - silent 4,$d + silent 4,$d _ for line in lines let name = get(matchlist(line, '^. \([^:]\+\):'), 1, '') if empty(name) || !has_key(printed, name)