fix tree_sitter_scopes
This commit is contained in:
parent
9a406b569b
commit
756253b43f
1 changed files with 4 additions and 3 deletions
|
@ -1077,12 +1077,13 @@ fn tree_sitter_scopes(
|
|||
let contents = format!("```json\n{:?}\n````", scopes);
|
||||
|
||||
let callback = async move {
|
||||
let call: job::Callback =
|
||||
Box::new(move |editor: &mut Editor, compositor: &mut Compositor| {
|
||||
let call: job::Callback = Callback::EditorCompositor(Box::new(
|
||||
move |editor: &mut Editor, compositor: &mut Compositor| {
|
||||
let contents = ui::Markdown::new(contents, editor.syn_loader.clone());
|
||||
let popup = Popup::new("hover", contents).auto_close(true);
|
||||
compositor.replace_or_push("hover", popup);
|
||||
});
|
||||
},
|
||||
));
|
||||
Ok(call)
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue