summaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorath32021-11-14 15:11:53 +0000
committerGitHub2021-11-14 15:11:53 +0000
commit35c974c9c49f9127da3798c9a8e49795b3c4aadc (patch)
tree13324c42b38afd053eae9c3c8016f8a00b1af377 /helix-term/src/keymap.rs
parent0949a0de7fec9e11f8011693f84b1939b0a6a548 (diff)
Implement "Goto last modification" command (#1067)
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index e3e01995..b14b1a6f 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -525,6 +525,7 @@ impl Default for Keymaps {
"a" => goto_last_accessed_file,
"n" => goto_next_buffer,
"p" => goto_previous_buffer,
+ "." => goto_last_modification,
},
":" => command_mode,