diff options
author | Nathan Vegdahl | 2021-08-03 13:49:40 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-04 00:47:22 +0000 |
commit | 8c3a5b14de37aa3bd9c5c9a0aa2645245d03b161 (patch) | |
tree | 5fa5431570ee3e9b316b57aea09375bbf050c42e /helix-term/src/keymap.rs | |
parent | 585793eb469b8b980c7b182333d71d9746a375a4 (diff) |
Add `goto_last_line` command, and bind it to `ge`.
Resolves #529.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 5fe730a1..cba3b3d0 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -359,7 +359,7 @@ impl Default for Keymaps { "G" => goto_line, "g" => { "Goto" "g" => goto_file_start, - "e" => goto_file_end, + "e" => goto_last_line, "h" => goto_line_start, "l" => goto_line_end, "s" => goto_first_nonwhitespace, @@ -617,7 +617,7 @@ fn merge_partial_keys() { // Assumes that `ge` is in default keymap assert_eq!( keymap.root().search(&[key!('g'), key!('e')]).unwrap(), - &KeyTrie::Leaf(Command::goto_file_end), + &KeyTrie::Leaf(Command::goto_last_line), "Old leaves in subnode should be present in merged node" ); |