summaryrefslogtreecommitdiff
path: root/cli/lsp/lsp_custom.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2024-01-23 06:12:41 +0000
committerGitHub <noreply@github.com>2024-01-23 06:12:41 +0000
commitec97c7dd4b5c1be83639769990ca6d37345089ca (patch)
tree809e7e4c4571ad8e4fe4359277d0e0923af334cf /cli/lsp/lsp_custom.rs
parent2af0c0a3c6ea017bef2481c1a1ce0806457d5427 (diff)
feat(lsp): include scope uri in "deno/didChangeDenoConfiguration" (#22002)
Diffstat (limited to 'cli/lsp/lsp_custom.rs')
-rw-r--r--cli/lsp/lsp_custom.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/lsp/lsp_custom.rs b/cli/lsp/lsp_custom.rs
index 63f50d39f..a1fe392f1 100644
--- a/cli/lsp/lsp_custom.rs
+++ b/cli/lsp/lsp_custom.rs
@@ -89,7 +89,8 @@ pub enum DenoConfigurationType {
#[derive(Debug, Eq, Hash, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DenoConfigurationChangeEvent {
- pub uri: lsp::Url,
+ pub scope_uri: lsp::Url,
+ pub file_uri: lsp::Url,
#[serde(rename = "type")]
pub typ: DenoConfigurationChangeType,
pub configuration_type: DenoConfigurationType,