mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-18 05:34:02 -04:00
fix pgo not compiling
This commit is contained in:
parent
01d26270f6
commit
4a0c7d6f0b
1 changed files with 4 additions and 2 deletions
|
|
@ -215,7 +215,8 @@ shm_chain_new(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void search_selection_cancelled(struct terminal *term) {}
|
void vimode_view_down(struct terminal *term, int delta) {}
|
||||||
|
void vimode_cancel(struct terminal *term) {}
|
||||||
|
|
||||||
void get_current_modifiers(const struct seat *seat,
|
void get_current_modifiers(const struct seat *seat,
|
||||||
xkb_mod_mask_t *effective,
|
xkb_mod_mask_t *effective,
|
||||||
|
|
@ -242,7 +243,8 @@ key_binding_new_for_conf(
|
||||||
kbd_initialized = true;
|
kbd_initialized = true;
|
||||||
kbd = (struct key_binding_set){
|
kbd = (struct key_binding_set){
|
||||||
.key = tll_init(),
|
.key = tll_init(),
|
||||||
.search = tll_init(),
|
.vimode = tll_init(),
|
||||||
|
.vimode_search = tll_init(),
|
||||||
.url = tll_init(),
|
.url = tll_init(),
|
||||||
.mouse = tll_init(),
|
.mouse = tll_init(),
|
||||||
.selection_overrides = 0,
|
.selection_overrides = 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue