From 61c1e360c8ed3dc70ad1325e6a5074655896b467 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 3 Nov 2015 16:01:02 +0100 Subject: [PATCH] Custom indices overwrite plugin mappings References #178. --- autoload/startify.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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'))