From cbb3ebafdc6f2473264ad7cde99ddfff5a80a832 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Wed, 2 Jun 2021 13:19:21 +0900 Subject: Support ctrl-f and ctrl-b to page up/down, fixes #41 --- helix-term/src/keymap.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'helix-term/src/keymap.rs') diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 044d97eb..fc7bb86e 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -240,10 +240,12 @@ pub fn default() -> Keymaps { code: KeyCode::PageUp, modifiers: KeyModifiers::NONE } => commands::page_up, + ctrl!('b') => commands::page_up, KeyEvent { code: KeyCode::PageDown, modifiers: KeyModifiers::NONE } => commands::page_down, + ctrl!('f') => commands::page_down, ctrl!('u') => commands::half_page_up, ctrl!('d') => commands::half_page_down, -- cgit v1.2.3-70-g09d2