From 4d0ea8c95fb6aa5dbe040a2c6ef2726aab654e0b Mon Sep 17 00:00:00 2001 From: Luminiferous Date: Thu, 24 Apr 2025 00:06:30 +0200 Subject: [PATCH] Added the ability to deselect lines/select lines upwards with x --- config.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.toml b/config.toml index a737f86..3b21bbf 100644 --- a/config.toml +++ b/config.toml @@ -38,3 +38,9 @@ cursor-line = 'hint' [keys.normal] 'F7' = 'goto_previous_buffer' 'F8' = 'goto_next_buffer' +X = 'select_line_above' +x = 'select_line_below' + +[keys.select] +X = 'select_line_above' +x = 'select_line_below'