Skip to content

Commit 4970fe2

Browse files
authored
editor: Hide mouse cursor also for movements and selections (#27677)
This enables hiding mouse cursor even on cursor movements like up, down, etc. or selections made using keyboard, etc. Renamed existing boolean setting "hide_mouse_while_typing" to "hide_mouse". It can have three values: `on_typing_and_movement`, `on_typing`, `never`. Release Notes: - Now mouse cursor hides even when you navigate, or make selections using keyboard in editor. This behavior can be changed by setting `hide_mouse` to `on_typing_and_movement`, `on_typing` or `never`.
1 parent 7fe6188 commit 4970fe2

File tree

8 files changed

+264
-44
lines changed

8 files changed

+264
-44
lines changed

assets/settings/default.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@
164164
//
165165
// Default: not set, defaults to "bar"
166166
"cursor_shape": null,
167-
// Determines whether the mouse cursor is hidden when typing in an editor or input box.
168-
"hide_mouse_while_typing": true,
167+
// Determines when the mouse cursor should be hidden in an editor or input box.
168+
"hide_mouse": "on_typing_and_movement",
169169
// How to highlight the current line in the editor.
170170
//
171171
// 1. Don't highlight the current line:

0 commit comments

Comments
 (0)