summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/input/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-utils/src/input/mod.rs')
-rw-r--r--zellij-utils/src/input/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/zellij-utils/src/input/mod.rs b/zellij-utils/src/input/mod.rs
index 2fb7deaf7..0d51f4f5d 100644
--- a/zellij-utils/src/input/mod.rs
+++ b/zellij-utils/src/input/mod.rs
@@ -55,6 +55,10 @@ pub fn get_mode_info(mode: InputMode, style: Style, capabilities: PluginCapabili
("↓↑".to_string(), "Scroll".to_string()),
("PgUp/PgDn".to_string(), "Scroll Page".to_string()),
("u/d".to_string(), "Scroll Half Page".to_string()),
+ (
+ "e".to_string(),
+ "Edit Scrollback in Default Editor".to_string(),
+ ),
],
InputMode::RenameTab => vec![("Enter".to_string(), "when done".to_string())],
InputMode::RenamePane => vec![("Enter".to_string(), "when done".to_string())],