From 97b4e225be431ab68a3f8ccc278114ff6f82b342 Mon Sep 17 00:00:00 2001 From: somini Date: Sat, 24 Oct 2015 00:56:38 +0100 Subject: [PATCH] Improve mappings This sets all the created mappings as `nowait`, meaning having global mappings will still allow you to jump to a file instantly. For example, if you have a commentary plugin and define a global mapping of `gcc`, you can't use `g` without waiting (or clicking Esc right away). Closes #180. --- autoload/startify.vim | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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].)