added vim bindings for moving cursor up and down

This commit is contained in:
2026-02-07 15:14:56 +01:00
committed by shv187
parent 145404d829
commit e5e7c178df

View File

@@ -118,7 +118,9 @@ class DetailsScreen(Screen):
class GradesTable(DataTable):
BINDINGS = [
Binding("enter", "select_cursor", "Pokaż szczegóły", priority=True)
Binding("enter", "select_cursor", "Pokaż szczegóły", priority=True),
Binding("j", "cursor_down", "W dół"),
Binding("k", "cursor_up", "W górę"),
]
class DashboardScreen(Screen):