mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Use a hook for resolving completion items
Previously we used the IdleTimeout event to trigger LSP `completion/resolveItem` requests. We can now refactor this to use an event system hook instead and lower the timeout.
This commit is contained in:
parent
98ebeeebd8
commit
b7b6f30084
3 changed files with 100 additions and 69 deletions
|
@ -1017,7 +1017,7 @@ impl Client {
|
|||
pub fn resolve_completion_item(
|
||||
&self,
|
||||
completion_item: lsp::CompletionItem,
|
||||
) -> Option<impl Future<Output = Result<Value>>> {
|
||||
) -> Option<impl Future<Output = Result<lsp::CompletionItem>>> {
|
||||
let capabilities = self.capabilities.get().unwrap();
|
||||
|
||||
// Return early if the server does not support resolving completion items.
|
||||
|
@ -1029,7 +1029,8 @@ impl Client {
|
|||
_ => return None,
|
||||
}
|
||||
|
||||
Some(self.call::<lsp::request::ResolveCompletionItem>(completion_item))
|
||||
let res = self.call::<lsp::request::ResolveCompletionItem>(completion_item);
|
||||
Some(async move { Ok(serde_json::from_value(res.await?)?) })
|
||||
}
|
||||
|
||||
pub fn resolve_code_action(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue