From e0b295a725cb57e26bbcf30689d2578482c44c5b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Jul 2013 10:32:59 +0200 Subject: [PATCH] Remember mappings until is hit A certain branch tried to execute buffer-local mappings after calling :enew. Therefore the mappings didn't exist anymore. References #30. --- autoload/startify.vim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 5f9b40f..5f05834 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -90,8 +90,7 @@ function! startify#insane_in_the_membrane() abort execute 'nnoremap '. g:startify_empty_buffer_key .' :enew' endif - autocmd! startify * - autocmd startify CursorMoved call s:set_cursor() + autocmd startify CursorMoved call s:set_cursor() call cursor((s:show_special ? 4 : 2) + s:offset_header, 5) endfunction @@ -354,8 +353,8 @@ endfunction " Function: s:open_buffers {{{1 function! s:open_buffers(cword) abort - enew if exists('s:marked') && !empty(s:marked) + enew for i in range(len(s:marked)) for val in values(s:marked) if val[0] == i