mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-10 05:33:51 -04:00
Merge branch 'master' into releases/1.12
This commit is contained in:
commit
0da081f194
2 changed files with 210 additions and 200 deletions
398
CHANGELOG.md
398
CHANGELOG.md
File diff suppressed because it is too large
Load diff
12
pgo/pgo.c
12
pgo/pgo.c
|
|
@ -178,6 +178,13 @@ struct key_binding_set *
|
||||||
key_binding_for(
|
key_binding_for(
|
||||||
struct key_binding_manager *mgr, const struct terminal *term,
|
struct key_binding_manager *mgr, const struct terminal *term,
|
||||||
const struct seat *seat)
|
const struct seat *seat)
|
||||||
|
{
|
||||||
|
return &kbd;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
key_binding_new_for_term(
|
||||||
|
struct key_binding_manager *mgr, const struct terminal *term)
|
||||||
{
|
{
|
||||||
if (!kbd_initialized) {
|
if (!kbd_initialized) {
|
||||||
kbd_initialized = true;
|
kbd_initialized = true;
|
||||||
|
|
@ -189,8 +196,11 @@ key_binding_for(
|
||||||
.selection_overrides = 0,
|
.selection_overrides = 0,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return &kbd;
|
void
|
||||||
|
key_binding_unref_term(struct key_binding_manager *mgr, const struct terminal *term)
|
||||||
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue