Explorar o código

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.
Enrico Ghirardi %!s(int64=10) %!d(string=hai) anos
pai
achega
2ae8a96633
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      autoload/startify.vim

+ 1 - 1
autoload/startify.vim

@@ -268,7 +268,7 @@ function! startify#session_write(spath)
     " remove lines from the session file
     " remove lines from the session file
     if exists('g:startify_session_remove_lines')
     if exists('g:startify_session_remove_lines')
       for pattern in g:startify_session_remove_lines
       for pattern in g:startify_session_remove_lines
-        execute 'silent global/'. pattern .'/delete'
+        execute 'silent global/'. pattern .'/delete _'
       endfor
       endfor
     endif
     endif