mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-22 22:26:54 +03:00
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
@ -26,4 +26,4 @@ expression: last_snapshot
|
||||
│ ││line19 00000000000000000000000000000000000000000000000000█│
|
||||
└──────────────────────────────────────────────────────────┘└──────────────────────────────────────────────────────────┘
|
||||
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![
|
||||
("↓↑".to_string(), "Scroll".to_string()),
|
||||
("PgUp/PgDn".to_string(), "Scroll Page".to_string()),
|
||||
("u/d".to_string(), "Scroll Half Page".to_string()),
|
||||
("PgDn/PgUp".to_string(), "Scroll Page".to_string()),
|
||||
("d/u".to_string(), "Scroll Half Page".to_string()),
|
||||
(
|
||||
"e".to_string(),
|
||||
"Edit Scrollback in Default Editor".to_string(),
|
||||
|
Loading…
Reference in New Issue
Block a user