Don't change line on <LeftMouse>

Fixes https://github.com/mhinz/vim-startify/issues/365
This commit is contained in:
Marco Hinz 2019-04-10 18:52:13 +02:00
parent 9622dee5f1
commit b92a2224cd
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -772,11 +772,14 @@ function! s:set_cursor() abort
let b:startify.newline = line('.')
" going up (-1) or down (1)
if b:startify.oldline == b:startify.newline && col('.') != s:fixed_column
if b:startify.oldline == b:startify.newline
\ && col('.') != s:fixed_column
\ && !b:startify.leftmouse
let movement = 2 * (col('.') > s:fixed_column) - 1
let b:startify.newline += movement
else
let movement = 2 * (b:startify.newline > b:startify.oldline) - 1
let movement = 2 * (b:startify.newline > b:startify.oldline) - 1
let b:startify.leftmouse = 0
endif
" skip section headers lines until an entry is found
@ -804,6 +807,7 @@ function! s:set_mappings() abort
nnoremap <buffer><nowait><silent> t :call <sid>set_mark('T')<cr>
nnoremap <buffer><nowait><silent> v :call <sid>set_mark('V')<cr>
nnoremap <buffer><nowait><silent> <cr> :call startify#open_buffers()<cr>
nnoremap <buffer><nowait><silent> <LeftMouse> :call <sid>leftmouse()<cr>
nnoremap <buffer><nowait><silent> <2-LeftMouse> :call startify#open_buffers()<cr>
nnoremap <buffer><nowait><silent> <MiddleMouse> :enew <bar> execute 'normal! "'.(v:register=='"'?'*':v:register).'gp'<cr>
@ -812,6 +816,13 @@ function! s:set_mappings() abort
nnoremap <buffer><expr> n ' j'[v:searchforward].'n'
nnoremap <buffer><expr> N 'j '[v:searchforward].'N'
function! s:leftmouse()
" feedkeys() triggers CursorMoved which calls s:set_cursor() which checks
" .leftmouse.
let b:startify.leftmouse = 1
call feedkeys("\<LeftMouse>", 'nt')
endfunction
function! s:compare_by_index(foo, bar)
return a:foo.index - a:bar.index
endfunction