Remove <nowait> for index mappings

<nowait> guards against global mappings.

Problem: However, having 2 local <nowait> mappings, '1' and '11', makes no
sense, since it would always go with the former.

Solution: Remove <nowait> from all dynamically created mappings and keep it
for the fixed ones (i, b, v, ...).

If you absolutely need a <nowait> 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 <buffer><nowait><silent> g ...

References #180.

Reported-by: @noscripter
This commit is contained in:
Marco Hinz 2015-11-09 11:36:47 +01:00
parent c193556225
commit b817cab23f

View file

@ -605,7 +605,7 @@ function! s:set_mappings() abort
nnoremap <buffer><nowait><silent> <2-LeftMouse> :call startify#open_buffers()<cr>
for k in keys(s:entries)
execute 'nnoremap <buffer><nowait><silent>' s:entries[k].index
execute 'nnoremap <buffer><silent>' s:entries[k].index
\ ':call startify#open_buffers('. string(k) .')<cr>'
endfor