summaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorGokul Soumya2021-07-28 07:55:34 +0000
committerIvan Tham2021-07-28 13:33:18 +0000
commitb90450b9e8b995e96a723a5d8c7b179ad2967c5a (patch)
tree5f865bc8206c6cc662d4e494b0fc4cbd335f6c6f /helix-term/src/keymap.rs
parent013bec407cc686a2cf29e3b8dfb579e585c27e6e (diff)
Fix goto line number
Regression from #454. Go to line 10 with `10gg` or `10G`.
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 7328e729..95479340 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -356,6 +356,7 @@ impl Default for Keymaps {
"E" => move_next_long_word_end,
"v" => select_mode,
+ "G" => goto_line,
"g" => { "Goto"
"g" => goto_file_start,
"e" => goto_file_end,