added vim bindings for moving cursor up and down

This commit is contained in:
2026-02-07 15:14:56 +01:00
parent 145404d829
commit b4066e0c47

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):