Closed vitaly-zdanevich closed 7 years ago
If your Vim/NeoVim has mouse support, you can get mouse wheel to scroll a window by the following settings:
noremap <silent> <ScrollWheelDown> :call comfortable_motion#flick(40)<CR> noremap <silent> <ScrollWheelUp> :call comfortable_motion#flick(-40)<CR>
You may need to enable the mouse option for the above to work, for example, by set mouse=a.
mouse
set mouse=a
@vitaly-zdanevich I've just added the above descriptions to README.md. Thanks for your question!
If your Vim/NeoVim has mouse support, you can get mouse wheel to scroll a window by the following settings:
You may need to enable the
mouse
option for the above to work, for example, byset mouse=a
.