From a0fa408514936828d45780e0023988c94c84a290 Mon Sep 17 00:00:00 2001 From: geemili Date: Wed, 15 Oct 2025 12:01:21 -0600 Subject: [PATCH 1/2] hx: change `g a` keybind to use `open_previous_file` --- 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 1d879ac..a5d6326 100644 --- a/src/keybind/builtin/helix.json +++ b/src/keybind/builtin/helix.json @@ -136,7 +136,7 @@ ["g t", "goto_window_top"], ["g c", "goto_window_center"], ["g b", "goto_window_bottom"], - ["g a", "goto_last_accessed_file"], + ["g a", "open_previous_file"], ["g m", "goto_last_modified_file"], ["g n", "goto_next_buffer"], ["g p", "goto_previous_buffer"], @@ -431,7 +431,7 @@ ["g t", "goto_window_top"], ["g c", "goto_window_center"], ["g b", "goto_window_bottom"], - ["g a", "goto_last_accessed_file"], + ["g a", "open_previous_file"], ["g m", "goto_last_modified_file"], ["g n", "goto_next_buffer"], ["g p", "goto_previous_buffer"], From c2fa54810fe95ee05643f1a0ad77d723e209d242 Mon Sep 17 00:00:00 2001 From: geemili Date: Wed, 15 Oct 2025 12:10:59 -0600 Subject: [PATCH 2/2] hx: bind `g m` to `open_most_recent_file` --- 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 a5d6326..f5db91c 100644 --- a/src/keybind/builtin/helix.json +++ b/src/keybind/builtin/helix.json @@ -137,7 +137,7 @@ ["g c", "goto_window_center"], ["g b", "goto_window_bottom"], ["g a", "open_previous_file"], - ["g m", "goto_last_modified_file"], + ["g m", "open_most_recent_file"], ["g n", "goto_next_buffer"], ["g p", "goto_previous_buffer"], ["g k", "goto_previous_buffer"], @@ -432,7 +432,7 @@ ["g c", "goto_window_center"], ["g b", "goto_window_bottom"], ["g a", "open_previous_file"], - ["g m", "goto_last_modified_file"], + ["g m", "open_most_recent_file"], ["g n", "goto_next_buffer"], ["g p", "goto_previous_buffer"], ["g k", "goto_previous_buffer"],