Is there any way to hide the mouse cursor when typing? Unfortunately the Windows mouse option to “hide pointer while typing” is basically useless except in specific text boxes.
There are two basic ways I can think of that would make this happen:
-
When a keypress (or possibly several keypresses) is/are detected, move the mouse cursor to some out-of-the-way area of the screen.
-
When a keypress is detected, simply turn off the mouse pointer (there are Windows API calls which may achieve this). When the mouse pointer is again moved, turn it back on.
I think #1 above would be easier. Is there any way to move the mouse cursor programmatically in Sublime macros?
Thanks for any hints!