mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
fix: make "suggest.autoImports" to switch completions from external modules (#19845)
This commit is contained in:
parent
9d1c32945c
commit
9fa328f656
1 changed files with 2 additions and 2 deletions
|
@ -2363,10 +2363,10 @@ impl Inner {
|
|||
tsc::ImportModuleSpecifierEnding::Index,
|
||||
),
|
||||
include_automatic_optional_chain_completions: Some(true),
|
||||
include_completions_for_import_statements: Some(
|
||||
include_completions_for_import_statements: Some(true),
|
||||
include_completions_for_module_exports: Some(
|
||||
self.config.workspace_settings().suggest.auto_imports,
|
||||
),
|
||||
include_completions_for_module_exports: Some(true),
|
||||
include_completions_with_object_literal_method_snippets: Some(
|
||||
use_snippets,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue