diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-09-09 15:04:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 15:04:21 +0100 |
commit | 29ff0bfa9f4c369b30ec8ad1a81dc567eb9dc569 (patch) | |
tree | 03d3b125a15fcd2ec0d8d3804edf327ecdbdcd6b /cli/lsp/repl.rs | |
parent | c521c5fe771a92a73b2e48c846e1346fb7ca2b20 (diff) |
Reland "refactor(lsp): clean up "enablePaths" handling (#20388)" (#20423)
Diffstat (limited to 'cli/lsp/repl.rs')
-rw-r--r-- | cli/lsp/repl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/repl.rs b/cli/lsp/repl.rs index b12de4cab..c21e2e3fb 100644 --- a/cli/lsp/repl.rs +++ b/cli/lsp/repl.rs @@ -285,7 +285,7 @@ fn get_cwd_uri() -> Result<ModuleSpecifier, AnyError> { pub fn get_repl_workspace_settings() -> WorkspaceSettings { WorkspaceSettings { enable: Some(true), - enable_paths: Vec::new(), + enable_paths: None, config: None, certificate_stores: None, cache: None, |