mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
config: remove support for scrollback-up and scrollback-down
This commit is contained in:
parent
386796cec6
commit
5020366bf5
4 changed files with 3 additions and 51 deletions
2
input.c
2
input.c
|
|
@ -87,7 +87,6 @@ execute_binding(struct seat *seat, struct terminal *term,
|
|||
case BIND_ACTION_NONE:
|
||||
return true;
|
||||
|
||||
case BIND_ACTION_SCROLLBACK_UP:
|
||||
case BIND_ACTION_SCROLLBACK_UP_PAGE:
|
||||
cmd_scrollback_up(term, term->rows);
|
||||
return true;
|
||||
|
|
@ -100,7 +99,6 @@ execute_binding(struct seat *seat, struct terminal *term,
|
|||
cmd_scrollback_up(term, 1);
|
||||
return true;
|
||||
|
||||
case BIND_ACTION_SCROLLBACK_DOWN:
|
||||
case BIND_ACTION_SCROLLBACK_DOWN_PAGE:
|
||||
cmd_scrollback_down(term, term->rows);
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue