From 1f7b1ab4dc76fad57a317456e91604eb010ace56 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 9 Nov 2015 19:38:16 +0100 Subject: [PATCH] Make 'e' and 'q' also Reported-by: @Konfekt --- autoload/startify.vim | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 5714acf..00cbb30 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -75,7 +75,7 @@ function! startify#insane_in_the_membrane() abort if s:show_special call append('$', [' [e] ', '']) endif - call s:register(line('$')-1, 'e', 'special', 'enew', '') + call s:register(line('$')-1, 'e', 'special', 'enew', '', 1) let s:entry_number = 0 if filereadable('Session.vim') @@ -117,10 +117,10 @@ function! startify#insane_in_the_membrane() abort if s:show_special call append('$', ['', ' [q] ']) - call s:register(line('$'), 'q', 'special', 'call s:close()', '') + call s:register(line('$'), 'q', 'special', 'call s:close()', '', 1) else " Don't overwrite the last regular entry, thus +1 - call s:register(line('$')+1, 'q', 'special', 'call s:close()', '') + call s:register(line('$')+1, 'q', 'special', 'call s:close()', '', 1) endif " compute first line offset @@ -605,7 +605,7 @@ function! s:set_mappings() abort nnoremap <2-LeftMouse> :call startify#open_buffers() for k in keys(s:entries) - execute 'nnoremap ' s:entries[k].index + execute 'nnoremap '. s:entries[k].nowait s:entries[k].index \ ':call startify#open_buffers('. string(k) .')' endfor @@ -728,12 +728,13 @@ function! s:print_section_header() abort endfunction " Function: s:register {{{1 -function! s:register(line, index, type, cmd, path) +function! s:register(line, index, type, cmd, path, ...) let s:entries[a:line] = { \ 'index': a:index, \ 'type': a:type, \ 'cmd': a:cmd, \ 'path': a:path, \ 'marked': 0, + \ 'nowait': a:0 ? '' : '', \ } endfunction