diff --git a/autoload/startify.vim b/autoload/startify.vim index eea7769..eb6b7f9 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -593,11 +593,6 @@ endfunction " Function: s:set_mappings {{{1 function! s:set_mappings() abort - for k in keys(s:entries) - execute 'nnoremap ' s:entries[k].index - \ ':call startify#open_buffers('. string(k) .')' - endfor - nnoremap i :enew startinsert nnoremap :enew startinsert nnoremap b :call set_mark('B') @@ -607,6 +602,11 @@ function! s:set_mappings() abort nnoremap :call startify#open_buffers() nnoremap <2-LeftMouse> :call startify#open_buffers() + for k in keys(s:entries) + execute 'nnoremap ' s:entries[k].index + \ ':call startify#open_buffers('. string(k) .')' + endfor + " Prevent 'nnoremap j gj' mappings, since they would break navigation. " (One can't leave the [x].) if !empty(maparg('j', 'n'))