From 46530918985bd1ef4448d52ef70dbff2a4d8324b Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Sat, 6 Sep 2025 13:45:49 +0200 Subject: [PATCH] remap deletion keys --- modules/apps/terminal/helix.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/apps/terminal/helix.nix b/modules/apps/terminal/helix.nix index 340b6d1..1c6f0c7 100644 --- a/modules/apps/terminal/helix.nix +++ b/modules/apps/terminal/helix.nix @@ -21,6 +21,16 @@ right = ["diagnostics" "selections" "register" "file-encoding" "position" "position-percentage"]; }; }; + keys = { + normal = { + "d" = "delete_selection_noyank"; + "A-d" = "delete_selection"; + }; + select = { + "d" = "delete_selection_noyank"; + "A-d" = "delete_selection"; + }; + }; }; languages.language = []; };