Make n/N work properly

For caveats see:

https://github.com/mhinz/vim-startify/issues/218#issuecomment-222962221

References #218.
This commit is contained in:
Marco Hinz 2016-06-01 13:12:15 +02:00
parent 3c3a835d8d
commit 54ee02272c

View file

@ -702,6 +702,11 @@ function! s:set_mappings() abort
execute "nnoremap <buffer>". s:nowait_string ."<silent> <cr> :call startify#open_buffers()<cr>"
execute "nnoremap <buffer>". s:nowait_string ."<silent> <2-LeftMouse> :call startify#open_buffers()<cr>"
" Without these mappings n/N wouldn't work properly, since autocmds always
" force the cursor back on the index.
nnoremap <buffer><expr> n ' j'[v:searchforward].'n'
nnoremap <buffer><expr> N 'j '[v:searchforward].'N'
for k in keys(s:entries)
execute 'nnoremap <buffer><silent>'. s:entries[k].nowait s:entries[k].index
\ ':call startify#open_buffers('. string(k) .')<cr>'