From b817cab23f3e5ba147064a09363f51362e657f04 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 9 Nov 2015 11:36:47 +0100 Subject: [PATCH] Remove for index mappings guards against global mappings. Problem: However, having 2 local mappings, '1' and '11', makes no sense, since it would always go with the former. Solution: Remove from all dynamically created mappings and keep it for the fixed ones (i, b, v, ...). If you absolutely need a mapping for a non-fixed mapping, e.g. 'g' (and because you use vim-commentary which maps 'gc'), see ":h startify-autocmd": autocmd User Startified nnoremap g ... References #180. Reported-by: @noscripter --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 6175795..5714acf 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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].index \ ':call startify#open_buffers('. string(k) .')' endfor