mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-27 01:40:16 -05:00
config: add 'hide-when-typing'
When enabled, the mouse cursor is hidden when the user types in the terminal. It is un-hidden when the user moves the mouse, or when the window loses keyboard focus.
This commit is contained in:
parent
b00dfcf7b6
commit
d4ee9be4d7
11 changed files with 57 additions and 16 deletions
4
config.c
4
config.c
|
|
@ -517,6 +517,9 @@ parse_section_cursor(const char *key, const char *value, struct config *conf,
|
|||
else if (strcmp(key, "blink") == 0)
|
||||
conf->cursor.blink = str_to_bool(value);
|
||||
|
||||
else if (strcmp(key, "hide-when-typing") == 0)
|
||||
conf->cursor.hide_when_typing = str_to_bool(value);
|
||||
|
||||
else if (strcmp(key, "color") == 0) {
|
||||
char *value_copy = strdup(value);
|
||||
const char *text = strtok(value_copy, " ");
|
||||
|
|
@ -1251,6 +1254,7 @@ config_load(struct config *conf, const char *conf_path, bool errors_are_fatal)
|
|||
.cursor = {
|
||||
.style = CURSOR_BLOCK,
|
||||
.blink = false,
|
||||
.hide_when_typing = false,
|
||||
.color = {
|
||||
.text = 0,
|
||||
.cursor = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue