diff options
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 810c98c1..3358f9d2 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1308,7 +1308,7 @@ pub fn normal_mode(cx: &mut Context) { // Store a jump on the jumplist. fn push_jump(editor: &mut Editor) { let (view, doc) = editor.current(); - let jump = { (doc.id(), doc.selection(view.id).clone()) }; + let jump = (doc.id(), doc.selection(view.id).clone()); view.jumps.push(jump); } @@ -2446,7 +2446,7 @@ pub fn jump_backward(cx: &mut Context) { let count = cx.count(); let (view, doc) = cx.current(); - if let Some((id, selection)) = view.jumps.backward(count) { + if let Some((id, selection)) = view.jumps.backward(view.id, doc, count) { view.doc = *id; let selection = selection.clone(); let (view, doc) = cx.current(); // refetch doc |