mirror of https://github.com/lapce/lapce.git
get inlay hints when lsp is ready
This commit is contained in:
parent
5693f7700a
commit
9e68a8c3e2
|
@ -953,6 +953,12 @@ fn handle_event(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lsp_types::WorkDoneProgress::End(_end) => {
|
lsp_types::WorkDoneProgress::End(_end) => {
|
||||||
|
for view_id in data.main_split.editors.keys()
|
||||||
|
{
|
||||||
|
let editor_data =
|
||||||
|
data.editor_view_content(*view_id);
|
||||||
|
editor_data.get_inlay_hints(ctx);
|
||||||
|
}
|
||||||
for i in data
|
for i in data
|
||||||
.progresses
|
.progresses
|
||||||
.iter()
|
.iter()
|
||||||
|
|
Loading…
Reference in New Issue