From 4dc2965bbf6f0ef24cfa1225942c690c9fdd61ab Mon Sep 17 00:00:00 2001 From: Brooks J Rady Date: Thu, 22 Apr 2021 00:30:00 +0100 Subject: [PATCH] chore(changelog): add entry to CHANGELOG.md and tweak formatting --- CHANGELOG.md | 1 + src/common/input/handler.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a62b6f3..24648062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * Add ZELLIJ environment variable on startup (https://github.com/zellij-org/zellij/pull/305) * Terminal fix: do not clear line if it's not there (https://github.com/zellij-org/zellij/pull/289) * Do not allow opening new pane on the status bar (https://github.com/zellij-org/zellij/pull/314) +* Allow scrolling by full pages (https://github.com/zellij-org/zellij/pull/298) ## [0.5.0] - 2021-04-20 Beta release with all the things diff --git a/src/common/input/handler.rs b/src/common/input/handler.rs index 8abb2a0f..66fb6271 100644 --- a/src/common/input/handler.rs +++ b/src/common/input/handler.rs @@ -303,7 +303,7 @@ pub fn get_mode_info(mode: InputMode) -> ModeInfo { } InputMode::Scroll => { keybinds.push(("↓↑".to_string(), "Scroll".to_string())); - keybinds.push(("PGUP/PGDN".to_string(), "Scroll Page".to_string())); + keybinds.push(("PgUp/PgDn".to_string(), "Scroll Page".to_string())); } InputMode::RenameTab => { keybinds.push(("Enter".to_string(), "when done".to_string()));