From aab37d4ccd90b93f7d4543750eba3d6c3191df12 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 27 Apr 2013 14:32:26 +0200 Subject: [PATCH] use double-click to select an entry Previously a single-click was used. But this introduced a bug that was suprisingly hard to prevent because of the 'line skipping feature'. If one changed to another tab and then used a mouse click on the tabpage to jump back to the tab containing the startify buffer, the click would have delegated into the buffer and select the next entry automatically. Just using a double-click prevents this without adding complex code. --- plugin/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index 3f032fb..e2e8e62 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -91,7 +91,7 @@ function! s:insane_in_the_membrane() abort nnoremap q :quit nnoremap e :enew nnoremap :normal - nnoremap :execute 'normal '. matchstr(getline('.'), '\w\+') + nnoremap <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+') if exists('g:startify_empty_buffer_key') execute 'nnoremap '. g:startify_empty_buffer_key .' :enew'