diff --git a/autoload/startify.vim b/autoload/startify.vim index 6cefac8..04b93a7 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -594,18 +594,18 @@ endfunction " Function: s:set_mappings {{{1 function! s:set_mappings() abort for k in keys(s:entries) - execute 'nnoremap ' s:entries[k].index + 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') - nnoremap s :call set_mark('S') - nnoremap t :call set_mark('T') - nnoremap v :call set_mark('V') - nnoremap :call startify#open_buffers() - nnoremap <2-LeftMouse> :call startify#open_buffers() + nnoremap i :enew startinsert + nnoremap :enew startinsert + nnoremap b :call set_mark('B') + nnoremap s :call set_mark('S') + nnoremap t :call set_mark('T') + nnoremap v :call set_mark('V') + nnoremap :call startify#open_buffers() + nnoremap <2-LeftMouse> :call startify#open_buffers() " Prevent 'nnoremap j gj' mappings, since they would break navigation. " (One can't leave the [x].)