From 6654e37a1eaa2f0f257ef7a3784dd9f4f42c3bef Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 13 Mar 2021 16:49:21 +0100 Subject: [PATCH] Do not alter registers when changing batchmode Fixes https://github.com/mhinz/vim-startify/issues/467 --- autoload/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index eca0eef..9f1934b 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -919,13 +919,13 @@ function! startify#set_mark(type, ...) abort if entry.marked && index[0] == a:type let entry.cmd = 'edit' let entry.marked = 0 - execute 'normal! ci]'. entry.index + execute 'normal! "_ci]'. entry.index else let entry.cmd = default_cmds[a:type] let entry.marked = 1 let entry.tick = b:startify.tick let b:startify.tick += 1 - execute 'normal! ci]'. repeat(a:type, len(index)) + execute 'normal! "_ci]'. repeat(a:type, len(index)) endif setlocal nomodifiable nomodified