diff options
Diffstat (limited to 'cli/lsp/mod.rs')
-rw-r--r-- | cli/lsp/mod.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/lsp/mod.rs b/cli/lsp/mod.rs index bc2323f12..c941a02a8 100644 --- a/cli/lsp/mod.rs +++ b/cli/lsp/mod.rs @@ -48,20 +48,10 @@ pub async fn start() -> Result<(), AnyError> { token.clone(), ) }) - // TODO(nayeemrmn): The extension has replaced this with the `deno.cache` - // command as of vscode_deno 3.21.0 / 2023.09.05. Remove this eventually. - .custom_method(lsp_custom::CACHE_REQUEST, LanguageServer::cache_request) .custom_method( lsp_custom::PERFORMANCE_REQUEST, LanguageServer::performance_request, ) - // TODO(nayeemrmn): The extension has replaced this with the - // `deno.reloadImportRegistries` command as of vscode_deno - // 3.26.0 / 2023.10.10. Remove this eventually. - .custom_method( - lsp_custom::RELOAD_IMPORT_REGISTRIES_REQUEST, - LanguageServer::reload_import_registries_request, - ) .custom_method(lsp_custom::TASK_REQUEST, LanguageServer::task_definitions) // TODO(nayeemrmn): Rename this to `deno/taskDefinitions` in vscode_deno and // remove this alias. |