diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-09-11 00:20:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-11 00:20:03 +0100 |
| commit | f959297dcd382b25bdedd0ff6aa27e8fb40e7ecd (patch) | |
| tree | f30f58be88150fb49b6207aee79058714197f3aa /cli/lsp/repl.rs | |
| parent | 4865ae13e1a637a86de1266f1f5147b6142872c6 (diff) | |
feat(lsp): unstable setting as list (#25552)
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 85d3a022e..a238a22cc 100644 --- a/cli/lsp/repl.rs +++ b/cli/lsp/repl.rs @@ -311,7 +311,7 @@ pub fn get_repl_workspace_settings() -> WorkspaceSettings { document_preload_limit: 0, // don't pre-load any modules as it's expensive and not useful for the repl tls_certificate: None, unsafely_ignore_certificate_errors: None, - unstable: false, + unstable: Default::default(), suggest: DenoCompletionSettings { imports: ImportCompletionSettings { auto_discover: false, |
