GNOME Bugzilla – Bug 762981
Neovim mode change makes mouse pointer appear
Last modified: 2017-04-16 21:11:39 UTC
In neovim (https://github.com/neovim/neovim/) change between insert and command modes ('i' and ESC). The mouse pointer keeps re-appearing on these keypresses, although I believe it should not, it should remain hidden.
It keeps re-enabling mouse reporting mode \e[?1002h. - We could ignore this if the sequence doesn't actually change the state, and not redisplay the pointer. - Or we could change vte never redisplay the pointer when the mouse mode is toggled. - Or we could leave it as is, and let neovim fix their code not to re-enable what's already enabled. I have no firm opinion.
Regardless of fixing neovim not to do this (which should be done anyway), I think we should do 1st option, and possibly *also* 2nd option.
Neovim bugreport: https://github.com/neovim/neovim/issues/4394
Just thinking about it... when e.g. starting up or quitting "mc" the mouse pointer appears. I got used to it, but it doesn't make too much sense, I tend to think it would be better without it. That is, I tend to vote for going for the 2nd option (which also includes the 1st).
See also bug 780785.
Fixed as part of bug 780785 comment 6.