fix: Make key order consistent (#1539)
The order of the "arrow" keys is always left/down/up/right, make the keybindings for the Scroll mode align with this ordering.
This commit is contained in:
parent
5d9c428294
commit
59d753dc2f
2 changed files with 3 additions and 3 deletions
|
|
@ -26,4 +26,4 @@ expression: last_snapshot
|
||||||
│ ││line19 00000000000000000000000000000000000000000000000000█│
|
│ ││line19 00000000000000000000000000000000000000000000000000█│
|
||||||
└──────────────────────────────────────────────────────────┘└──────────────────────────────────────────────────────────┘
|
└──────────────────────────────────────────────────────────┘└──────────────────────────────────────────────────────────┘
|
||||||
Ctrl + <g> LOCK <p> PANE <t> TAB <n> RESIZE <h> MOVE <s> SCROLL <o> SESSION <q> QUIT
|
Ctrl + <g> LOCK <p> PANE <t> TAB <n> RESIZE <h> MOVE <s> SCROLL <o> SESSION <q> QUIT
|
||||||
<↓↑> Scroll / <PgUp/PgDn> Scroll / <u/d> Scroll / <e> Edit / <ENTER> Select pane
|
<↓↑> Scroll / <PgDn/PgUp> Scroll / <d/u> Scroll / <e> Edit / <ENTER> Select pane
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,8 @@ pub fn get_mode_info(mode: InputMode, style: Style, capabilities: PluginCapabili
|
||||||
],
|
],
|
||||||
InputMode::Scroll => vec![
|
InputMode::Scroll => vec![
|
||||||
("↓↑".to_string(), "Scroll".to_string()),
|
("↓↑".to_string(), "Scroll".to_string()),
|
||||||
("PgUp/PgDn".to_string(), "Scroll Page".to_string()),
|
("PgDn/PgUp".to_string(), "Scroll Page".to_string()),
|
||||||
("u/d".to_string(), "Scroll Half Page".to_string()),
|
("d/u".to_string(), "Scroll Half Page".to_string()),
|
||||||
(
|
(
|
||||||
"e".to_string(),
|
"e".to_string(),
|
||||||
"Edit Scrollback in Default Editor".to_string(),
|
"Edit Scrollback in Default Editor".to_string(),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue