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.
This commit is contained in:
parent
2c7807566c
commit
2ae8a96633
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue