summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorImbolc <me@imbolc.name>2023-07-02 04:44:34 +0600
committerGitHub <noreply@github.com>2023-07-01 18:44:34 -0400
commitf15b58d19cf0a3096e0cf37b83ec5c1dee691a47 (patch)
tree7f45d0f73c051fed76cf8275fe1834fc896d51af
parent0b2c718454a04154d2b6809b51452e1860aa8c1b (diff)
Update keymap.toml (#342)
Standard vim page-up / page-down bindings
-rw-r--r--config/keymap.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/keymap.toml b/config/keymap.toml
index 2d522c2..5e9e6d6 100644
--- a/config/keymap.toml
+++ b/config/keymap.toml
@@ -45,6 +45,8 @@ keymap = [
{ keys = ["page_down"], command = "cursor_move_page_down" },
{ keys = ["ctrl+u"], command = "cursor_move_page_up 0.5" },
{ keys = ["ctrl+d"], command = "cursor_move_page_down 0.5" },
+ { keys = ["ctrl+b"], command = "cursor_move_page_up" },
+ { keys = ["ctrl+f"], command = "cursor_move_page_down" },
# vim-like keybindings
{ keys = ["j"], command = "cursor_move_down" },