You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setselect is enabled for mouse selections, clicking anywhere after making a selection doesn't exit selection mode, but instead changes the endpoint of the selection. The same happens when a drag is started, instead of a new selection the endpoint of the existing selection is moved around.
With empty setselect, visual mode is used instead of select mode. This doesn't exhibit the same broken behavior, i.e the breakage is specific to select mode.
> nvim --version
NVIM v0.10.2
Build type: RelWithDebInfo
LuaJIT 2.1.1724512491
Run "nvim -V1 -v" for more info
The text was updated successfully, but these errors were encountered:
4d60c59 disables scrollview's mouse handling in select mode.
Ideally, scrollview could still be supported in select mode in case a scrollbar or sign is clicked. This might be feasible with Neovim PR #30542 (draft) or Neovim PR #30939 (merged).
When
setselect
is enabled for mouse selections, clicking anywhere after making a selection doesn't exit selection mode, but instead changes the endpoint of the selection. The same happens when a drag is started, instead of a new selection the endpoint of the existing selection is moved around.With empty
setselect
, visual mode is used instead of select mode. This doesn't exhibit the same broken behavior, i.e the breakage is specific to select mode.The text was updated successfully, but these errors were encountered: