Do not alter registers when changing batchmode

Fixes https://github.com/mhinz/vim-startify/issues/467
This commit is contained in:
Marco Hinz 2021-03-13 16:49:21 +01:00
parent f2fc11844b
commit 6654e37a1e
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -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