diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-03-29 11:27:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 11:27:43 +1100 |
commit | 5a6a1eeb3918985ab003fd8d87faebb76410a242 (patch) | |
tree | 9602da13a8b81d0742eecb71063b4fab9e5eb099 /cli/lsp/lsp_custom.rs | |
parent | 89dd5dac6219f9a4c04ada4b5a9c812a88c1c2d4 (diff) |
feat(lsp): support API for config file (#14139)
Closes: #13910
Diffstat (limited to 'cli/lsp/lsp_custom.rs')
-rw-r--r-- | cli/lsp/lsp_custom.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lsp/lsp_custom.rs b/cli/lsp/lsp_custom.rs index 1d8c20984..eff55e2ea 100644 --- a/cli/lsp/lsp_custom.rs +++ b/cli/lsp/lsp_custom.rs @@ -6,6 +6,7 @@ use lspower::lsp; pub const CACHE_REQUEST: &str = "deno/cache"; pub const PERFORMANCE_REQUEST: &str = "deno/performance"; +pub const TASK_REQUEST: &str = "deno/task"; pub const RELOAD_IMPORT_REGISTRIES_REQUEST: &str = "deno/reloadImportRegistries"; pub const VIRTUAL_TEXT_DOCUMENT: &str = "deno/virtualTextDocument"; |