Skip to content

Commit

Permalink
feat: add k/j for help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 7, 2024
1 parent 4003ecf commit a022a00
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dooit/ui/screens/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,9 @@ def compose(self) -> ComposeResult:
yield Header()
yield DooitKeyTable(self.api.keys, self.api.no_op)
yield Outro()

def key_j(self):
self.scroll_down()

def key_k(self):
self.scroll_up()

0 comments on commit a022a00

Please sign in to comment.