mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-02 01:40:13 -05:00
config: add ‘beam-thickness’ option
* Rename cursor.style value ‘bar’ to ‘beam’. ‘bar’ remains recognized, but should eventually be deprecated and then removed. * Add ‘cursor.beam-thickness’ option, a pt-or-px value specifying the thickness of the beam cursor. Defaults to 1.5pt. * Rename (and export) pt_or_px_as_pixels() to term_pt_or_px_as_pixels() * Change term_pt_or_px_as_pixels() to round point values instead of truncating them.
This commit is contained in:
parent
47c7665bd0
commit
7ce767ab87
10 changed files with 57 additions and 29 deletions
15
config.c
15
config.c
|
|
@ -941,13 +941,14 @@ parse_section_cursor(const char *key, const char *value, struct config *conf,
|
|||
if (strcmp(key, "style") == 0) {
|
||||
if (strcmp(value, "block") == 0)
|
||||
conf->cursor.style = CURSOR_BLOCK;
|
||||
else if (strcmp(value, "bar") == 0)
|
||||
conf->cursor.style = CURSOR_BAR;
|
||||
else if (strcmp(value, "beam") == 0 || strcmp(value, "bar") == 0)
|
||||
conf->cursor.style = CURSOR_BEAM;
|
||||
else if (strcmp(value, "underline") == 0)
|
||||
conf->cursor.style = CURSOR_UNDERLINE;
|
||||
|
||||
else {
|
||||
LOG_AND_NOTIFY_ERR("%s:%d: invalid 'style': %s", path, lineno, value);
|
||||
LOG_AND_NOTIFY_ERR("%s:%d: style: one of block, beam or underline",
|
||||
path, lineno);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
@ -967,6 +968,13 @@ parse_section_cursor(const char *key, const char *value, struct config *conf,
|
|||
conf->cursor.color.cursor |= 1u << 31;
|
||||
}
|
||||
|
||||
else if (strcmp(key, "beam-thickness") == 0) {
|
||||
if (!str_to_pt_or_px(
|
||||
value, &conf->cursor.beam_thickness,
|
||||
conf, path, lineno, "cursor", "beam-thickness"))
|
||||
return false;
|
||||
}
|
||||
|
||||
else {
|
||||
LOG_AND_NOTIFY_ERR("%s:%d: [cursor]: %s: invalid key", path, lineno, key);
|
||||
return false;
|
||||
|
|
@ -2261,6 +2269,7 @@ config_load(struct config *conf, const char *conf_path,
|
|||
.text = 0,
|
||||
.cursor = 0,
|
||||
},
|
||||
.beam_thickness = {.pt = 1.5},
|
||||
},
|
||||
.mouse = {
|
||||
.hide_when_typing = false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue