diff options
author | Blaž Hrastnik | 2021-04-13 07:56:03 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-04-13 07:56:03 +0000 |
commit | 2a1f10d1b57f88233eb48a9dbce2b56196801bd8 (patch) | |
tree | 2e177ba2f8524295243e98df0e016a29a91ba6de /helix-term | |
parent | 95dd55ba943f3667bac3acecb2c65ee7f69d42cd (diff) |
Center the new position on screen after doing a goto jump.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index d75cb6ff..f1c5f8b5 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1122,6 +1122,8 @@ fn _goto(cx: &mut Context, locations: Vec<lsp::Location>) { let definition_pos = location.range.start; let new_pos = lsp_pos_to_pos(doc.text(), definition_pos); doc.set_selection(view.id, Selection::point(new_pos)); + let line = doc.text().char_to_line(new_pos); + view.first_line = line.saturating_sub(view.area.height as usize / 2); } match locations.as_slice() { |