Skip to content

Commit

Permalink
feat(config): add keybindings for Book, Page mode
Browse files Browse the repository at this point in the history
Signed-off-by: Deep Panchal <deep302001@gmail.com>
  • Loading branch information
deepanchal committed Jul 2, 2024
1 parent 9fe4aac commit ced9f0d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .config/config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,27 @@
"<Ctrl-c>": "Quit", // Yet another way to quit
"<Ctrl-z>": "Suspend" // Suspend the application
},
"Book": {
"<q>": "Quit",
"<Ctrl-c>": "Quit",
"<Ctrl-z>": "Suspend",
"<j>": "SelectNextBook",
"down": "SelectNextBook",
"<k>": "SelectPrevBook",
"up": "SelectPrevBook",
"<h>": "FocusPrev",
"<l>": "FocusNext",
},
"Page": {
"<q>": "Quit",
"<Ctrl-c>": "Quit",
"<Ctrl-z>": "Suspend",
"<j>": "SelectNextPage",
"down": "SelectNextPage",
"<k>": "SelectPrevPage",
"up": "SelectPrevPage",
"<h>": "FocusPrev",
"<l>": "FocusNext",
}
}
}

0 comments on commit ced9f0d

Please sign in to comment.