mirror of https://github.com/helix-editor/helix
Preview scratch buffers in jumplist picker (#7331)
parent
a4a86120e8
commit
4d8c9a394e
|
@ -2680,7 +2680,7 @@ fn jumplist_picker(cx: &mut Context) {
|
||||||
|editor, meta| {
|
|editor, meta| {
|
||||||
let doc = &editor.documents.get(&meta.id)?;
|
let doc = &editor.documents.get(&meta.id)?;
|
||||||
let line = meta.selection.primary().cursor_line(doc.text().slice(..));
|
let line = meta.selection.primary().cursor_line(doc.text().slice(..));
|
||||||
Some((meta.path.clone()?.into(), Some((line, line))))
|
Some((meta.id.into(), Some((line, line))))
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
cx.push_layer(Box::new(overlaid(picker)));
|
cx.push_layer(Box::new(overlaid(picker)));
|
||||||
|
|
Loading…
Reference in New Issue