From ced9f0d865665734056d36465311e3e9510f4274 Mon Sep 17 00:00:00 2001 From: Deep Panchal Date: Mon, 1 Jul 2024 21:35:31 -0500 Subject: [PATCH] feat(config): add keybindings for Book, Page mode Signed-off-by: Deep Panchal --- .config/config.json5 | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.config/config.json5 b/.config/config.json5 index c746239..c0046fc 100644 --- a/.config/config.json5 +++ b/.config/config.json5 @@ -6,5 +6,27 @@ "": "Quit", // Yet another way to quit "": "Suspend" // Suspend the application }, + "Book": { + "": "Quit", + "": "Quit", + "": "Suspend", + "": "SelectNextBook", + "down": "SelectNextBook", + "": "SelectPrevBook", + "up": "SelectPrevBook", + "": "FocusPrev", + "": "FocusNext", + }, + "Page": { + "": "Quit", + "": "Quit", + "": "Suspend", + "": "SelectNextPage", + "down": "SelectNextPage", + "": "SelectPrevPage", + "up": "SelectPrevPage", + "": "FocusPrev", + "": "FocusNext", + } } }