You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`deno/cache`|`request_deno_cache`|Instructs Deno to cache a module and its dependencies. Usually sent as a response to a code action for un-cached modules. |
10
+
|`deno/performance`|`request_deno_performance`|Requests timing averages for Deno's internal instrumentation for monitoring and debugging. |
11
+
|`deno/reloadImportRegistries`|`request_deno_reload_import_registries`|Reloads cached responses from import registries. |
12
+
|`deno/virtualTextDocument`|`request_deno_virtual_text_document`|Requests read-only virtual text documents (e.g., cached remote modules or Deno library files) using the `deno:` schema. |
13
+
|`deno/task`|`request_deno_task`|Retrieves a list of available Deno tasks defined in `deno.json` or `deno.jsonc`. |
|`deno/testModule`|`receive_deno_test_module`| Logs discovered test module information at `DEBUG` level. |
37
+
|`deno/testModuleDelete`|`receive_deno_test_module_delete`| Logs deleted test module information at `DEBUG` level. |
38
+
|`deno/testRunProgress`|`receive_deno_test_run_progress`| Logs test run state (`enqueued`, `started`, `passed`, etc.) and progress at `DEBUG` level. |
35
39
36
40
## Other Experimental Capabilities
37
41
38
42
-`denoConfigTasks`: Support for tasks defined in Deno configuration files.
39
43
-`didRefreshDenoConfigurationTreeNotifications`: Notifications for when the configuration tree is refreshed.
44
+
45
+
## Deno LSP Documentation
46
+
47
+
### Official Documentation
48
+
49
+
-[Language Server Integration](https://docs.deno.com/runtime/reference/lsp_integration/) - Comprehensive guide for integrating with Deno's LSP, including custom capabilities and testing API
50
+
-[deno lsp CLI Reference](https://docs.deno.com/runtime/reference/cli/lsp/) - Basic information about the `deno lsp` subcommand
51
+
-[Deno & Visual Studio Code](https://docs.deno.com/runtime/reference/vscode/) - Complete integration guide and setup
52
+
53
+
### Source Code & Development
54
+
55
+
-[Deno CLI LSP Source](https://github.com/denoland/deno/tree/main/cli/lsp) - The actual LSP implementation in Rust
56
+
-[VS Code Extension](https://github.com/denoland/vscode_deno) - Official VS Code extension source code
0 commit comments