aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-06-04 06:47:29 +0000
committerBlaž Hrastnik2021-06-04 06:47:29 +0000
commit4f0e3aa948a83c0d94f942448bfa7740532e55b7 (patch)
treef71d719e5fa4995feb92c79cdab9fd71d6b4ee1b /helix-term
parentf2e554d761a8e5f2f7b3cbc5590ff6e5699b13d9 (diff)
Implement gt/gm/gb, remap goto tYpe to gy
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs25
1 files changed, 24 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 294c6a0b..c5493cd2 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -1270,9 +1270,32 @@ pub fn goto_mode(cx: &mut Context) {
'g' => move_file_start(cx),
'e' => move_file_end(cx),
'd' => goto_definition(cx),
- 't' => goto_type_definition(cx),
+ 'y' => goto_type_definition(cx),
'r' => goto_reference(cx),
'i' => goto_implementation(cx),
+
+ 't' | 'm' | 'b' => {
+ let (view, doc) = cx.current();
+
+ let pos = doc.selection(view.id).cursor();
+ let line = doc.text().char_to_line(pos);
+
+ let scrolloff = PADDING.min(view.area.height as usize / 2); // TODO: user pref
+
+ let last_line = view.last_line(doc);
+
+ let line = match ch {
+ 't' => (view.first_line + scrolloff),
+ 'm' => (view.first_line + (view.area.height as usize / 2)),
+ 'b' => last_line.saturating_sub(scrolloff),
+ _ => unreachable!(),
+ }
+ .min(last_line.saturating_sub(scrolloff));
+
+ let pos = doc.text().line_to_char(line);
+
+ doc.set_selection(view.id, Selection::point(pos));
+ }
_ => (),
}
}