From 2ae8a966338c34cbda759ce9502602d4b7bd22a0 Mon Sep 17 00:00:00 2001 From: Enrico Ghirardi Date: Fri, 12 Jun 2015 15:44:00 +0200 Subject: [PATCH] Use blackhole register when removing lines During session save, when removing lines, we don't want to store the content in the unnamed register, takes more time and changes clipboard content. Just use the blackhole register. References #167. --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 632f3c0..4f5c9da 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -268,7 +268,7 @@ function! startify#session_write(spath) " remove lines from the session file if exists('g:startify_session_remove_lines') for pattern in g:startify_session_remove_lines - execute 'silent global/'. pattern .'/delete' + execute 'silent global/'. pattern .'/delete _' endfor endif