From 9a9161f28cb0fcbc42b93703b1a7afe415457d9a Mon Sep 17 00:00:00 2001 From: phg Date: Sun, 17 Aug 2025 18:40:18 +0200 Subject: [PATCH] Refactor keybinding for adding entries: change key from 'a' to 'n' for improved consistency with application shortcuts. --- src/hosts/tui/keybindings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hosts/tui/keybindings.py b/src/hosts/tui/keybindings.py index d455379..3d37cd9 100644 --- a/src/hosts/tui/keybindings.py +++ b/src/hosts/tui/keybindings.py @@ -9,7 +9,7 @@ from textual.binding import Binding # Key bindings for the hosts manager application HOSTS_MANAGER_BINDINGS = [ - Binding("a", "add_entry", "Add new entry", show=True, id="left:add_entry"), + Binding("n", "add_entry", "New entry", show=True, id="left:new_entry"), Binding("d", "delete_entry", "Delete entry", show=True, id="left:delete_entry"), Binding("e", "edit_entry", "Edit entry", show=True, id="left:edit_entry"), Binding(