feat: scroll_down_many & scroll_up_many removed.

`scroll_down_one`/`scroll_up_one` renamed `scroll_up`/`scroll_down`
This commit is contained in:
Jack Wills
2025-09-13 09:52:52 +00:00
parent 487c3faf96
commit 52a04ec1d0
14 changed files with 49 additions and 139 deletions
+3 -15
View File
@@ -75,14 +75,8 @@
"save_logs": [
"s"
],
// TODO "scroll_down_many" will be removed in the next release
// Scroll down a list by many
"scroll_down_many": [
"pagedown"
],
// TODO rename in next release
// Scroll down a list by one item
"scroll_down_one": [
"scroll_down": [
"down",
"j"
],
@@ -90,20 +84,14 @@
"scroll_end": [
"end"
],
// Modifier to scroll by 10 lines isntead of one, used in conjunction with scroll_up_x/scroll_down_x
// Modifier to scroll by 10 lines instead of one, used in conjunction with scroll_up/scroll_down
"scroll_many": ["control"],
// Scroll up to the start of a list
"scroll_start": [
"home"
],
// TODO "scroll_up_many" will be removed in the next release
// Scroll up a list by many
"scroll_up_many": [
"pageup"
],
// TODO rename in next release
// Scroll up a list by one item
"scroll_up_one": [
"scroll_up": [
"up",
"k"
],