From 85efc082cb45593e1c3629a976e78d5cf6872b28 Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:22:03 +0100 Subject: [PATCH] now removing all selection when hitting the escape key --- helix/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index b284536..3d862ad 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -16,3 +16,6 @@ color-modes = true normal = "block" insert = "bar" select = "block" + +[keys.normal] +esc = [ "collapse_selection", "keep_primary_selection" ]