From 167af9490a7709f8f05ebffa54ecda82836831cf Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 28 May 2015 11:13:18 +0200 Subject: [PATCH] Don't skip encryption key prompt References #162. --- autoload/startify.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 614ed17..d1bfa79 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -333,7 +333,7 @@ function! startify#session_list_as_string(lead, ...) abort endfunction " Function: #open_buffers {{{1 -function! startify#open_buffers() abort +function! startify#open_buffers() " markers found; open one or more buffers if exists('s:marked') && !empty(s:marked) enew @@ -370,7 +370,7 @@ function! startify#open_buffers() abort " no markers found; open a single buffer else try - execute 'normal' expand('') + call feedkeys(expand(''), 'nt') catch /E832/ " don't ask for undo encryption key twice edit catch /E325/ " swap file found @@ -567,7 +567,7 @@ function! s:set_mappings() abort nnoremap t :call set_mark('T') nnoremap v :call set_mark('V') nnoremap :call startify#open_buffers() - nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') + nnoremap <2-LeftMouse> :call feedkeys(expand(''), 'nt') nnoremap q :call close() " Prevent 'nnoremap j gj' mappings, since they would break navigation.