chore(changelog): add entry to CHANGELOG.md and tweak formatting

This commit is contained in:
Brooks J Rady 2021-04-22 00:30:00 +01:00
parent 19fc0496a3
commit 4dc2965bbf
2 changed files with 2 additions and 1 deletions

View file

@ -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) * 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) * 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) * 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 ## [0.5.0] - 2021-04-20
Beta release with all the things Beta release with all the things

View file

@ -303,7 +303,7 @@ pub fn get_mode_info(mode: InputMode) -> ModeInfo {
} }
InputMode::Scroll => { InputMode::Scroll => {
keybinds.push(("↓↑".to_string(), "Scroll".to_string())); 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 => { InputMode::RenameTab => {
keybinds.push(("Enter".to_string(), "when done".to_string())); keybinds.push(("Enter".to_string(), "when done".to_string()));