diff options
author | Ivan Tham | 2021-12-02 04:46:57 +0000 |
---|---|---|
committer | GitHub | 2021-12-02 04:46:57 +0000 |
commit | e2b428cc2d23965ab7a91809c5705ede0298107d (patch) | |
tree | 35484052f5c54deba2ee9e842f693043452bc38f /helix-term/src/keymap.rs | |
parent | 418b833d2b64ed986cfc84ca023e1a6ca5080008 (diff) |
Add last modified file (gm) (#1093)
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 06639dcd..73cb15f8 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -521,9 +521,10 @@ impl Default for Keymaps { "r" => goto_reference, "i" => goto_implementation, "t" => goto_window_top, - "m" => goto_window_middle, + "c" => goto_window_center, "b" => goto_window_bottom, "a" => goto_last_accessed_file, + "m" => goto_last_modified_file, "n" => goto_next_buffer, "p" => goto_previous_buffer, "." => goto_last_modification, |