From acbce306b271a4b4d15a1f0b8ea31853e60f03b1 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 28 May 2015 12:49:24 +0200 Subject: [PATCH] Use same open mechanism for all supported methods --- autoload/startify.vim | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 3bc3f50..46f6a13 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -367,14 +367,9 @@ function! startify#open_buffers() if exists('s:marked') unlet s:marked endif - " no markers found; open a single buffer - else - try - call feedkeys(expand('')) - catch /E832/ " don't ask for undo encryption key twice - edit - catch /E325/ " swap file found - endtry + else " no markers found; open a single buffer + call s:set_mark('B') + return startify#open_buffers() endif endfunction @@ -412,7 +407,7 @@ function! s:filter_oldfiles(path_prefix, path_format) abort break endif - let absolute_path = glob(fnamemodify(resolve(fname), ":p")) + let absolute_path = fnamemodify(resolve(fname), ":p") " filter duplicates, bookmarks and entries from the skiplist if has_key(entries, absolute_path) @@ -567,7 +562,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> :call feedkeys(expand('')) + nnoremap <2-LeftMouse> :call startify#open_buffers() nnoremap q :call close() " Prevent 'nnoremap j gj' mappings, since they would break navigation.