From 860212df55a7c83743e083c12962af6d7cf6d767 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 30 May 2024 22:43:38 +0200 Subject: [PATCH] helix movement in selection --- modules/home/utils/helix-config.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/home/utils/helix-config.nix b/modules/home/utils/helix-config.nix index 0e3a5ae..c1d88c9 100644 --- a/modules/home/utils/helix-config.nix +++ b/modules/home/utils/helix-config.nix @@ -38,4 +38,11 @@ C-n = "search_next"; C-t = "search_prev"; }; + + keys.select = { + h = "extend_char_left"; + t = "extend_line_up"; + n = "extend_line_down"; + s = "extend_char_right"; + }; }