mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
feat(lsp): basic support for textDocument/completion (#8651)
This commit is contained in:
parent
8bf3e0f4c6
commit
e94a18240e
6 changed files with 287 additions and 4 deletions
|
@ -382,6 +382,7 @@ impl ServerState {
|
|||
handlers::handle_goto_definition,
|
||||
)?
|
||||
.on_sync::<lsp_types::request::HoverRequest>(handlers::handle_hover)?
|
||||
.on_sync::<lsp_types::request::Completion>(handlers::handle_completion)?
|
||||
.on_sync::<lsp_types::request::References>(handlers::handle_references)?
|
||||
.on::<lsp_types::request::Formatting>(handlers::handle_formatting)
|
||||
.on::<lsp_extensions::VirtualTextDocument>(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue