Make <MiddleMouse> use "* instead of "" by default

Startify remaps <MiddleMouse> and uses v:register to paste from a specific
register.

The problem:

Unless 'clipboard' is set to "unnamed" or "unnamedplus", v:register will default
to "", whereas <MiddleMouse> usually defaults to "*.

Fixes #281.
This commit is contained in:
Marco Hinz 2017-04-07 01:47:39 +02:00
parent 2e89a6ec2b
commit f80b0cbe62
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -731,7 +731,7 @@ function! s:set_mappings() abort
execute "nnoremap <buffer>". s:nowait ."<silent> v :call <sid>set_mark('V')<cr>"
execute "nnoremap <buffer>". s:nowait ."<silent> <cr> :call startify#open_buffers()<cr>"
execute "nnoremap <buffer>". s:nowait ."<silent> <2-LeftMouse> :call startify#open_buffers()<cr>"
execute "nnoremap <buffer>". s:nowait ."<silent> <MiddleMouse> :enew <bar> execute 'normal! \"'.v:register.'gp'<cr>"
execute "nnoremap <buffer>". s:nowait ."<silent> <MiddleMouse> :enew <bar> execute 'normal! \"'.(v:register=='\"'?'*':v:register).'gp'<cr>"
" Without these mappings n/N wouldn't work properly, since autocmds always
" force the cursor back on the index.