From d6cdcfdb1a312fd61c2d5b9fa3325eb07fc706e7 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 15 Oct 2025 10:24:16 +0200 Subject: [PATCH] fix: `gg` in helix mode should be bound to `goto_line_vim` --- src/keybind/builtin/helix.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keybind/builtin/helix.json b/src/keybind/builtin/helix.json index a33e6d0..1d879ac 100644 --- a/src/keybind/builtin/helix.json +++ b/src/keybind/builtin/helix.json @@ -123,7 +123,7 @@ ["v", "enter_mode", "select"], - ["g g", "move_buffer_begin"], + ["g g", "goto_line_vim"], ["g e", "move_buffer_end"], ["g f", "goto_file"], ["g h", "move_begin"], @@ -418,7 +418,7 @@ ["v", "enter_mode", "normal"], - ["g g", "move_buffer_begin"], + ["g g", "goto_line_vim"], ["g e", "move_buffer_end"], ["g f", "goto_file"], ["g h", "move_begin"],