1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00

fix(default-keys): aligned Scroll Down One Page command's key binding with the docs

PageUp -> PageDown, apparently it was a copy/paste issue.
This commit is contained in:
Nikita Govorov 2022-04-13 16:13:52 +10:00 committed by Wez Furlong
parent 20e019d2ed
commit a8597c72dd

View File

@ -499,7 +499,7 @@ static DEFS: &[CommandDef] = &[
doc: "Scrolls the viewport down by 1 page",
exp: |exp| exp.push(ScrollByPage(NotNan::new(1.0).unwrap())),
keys: &[(Modifiers::SHIFT, "PageUp")],
keys: &[(Modifiers::SHIFT, "PageDown")],
args: &[ArgType::ActivePane],
},
CommandDef {