From b4066e0c47b3a159305e3e4e5939d3b0990d13bc Mon Sep 17 00:00:00 2001 From: Szymon P Date: Sat, 7 Feb 2026 15:14:56 +0100 Subject: [PATCH] added vim bindings for moving cursor up and down --- zut_app/zutui.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zut_app/zutui.py b/zut_app/zutui.py index b276f0f..66803b3 100644 --- a/zut_app/zutui.py +++ b/zut_app/zutui.py @@ -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):