Unnamed repository; edit this file 'description' to name the repository.
Merge pull request #22018 from A4-Tacks/vsc-suggest-string
fix: enable vscode suggest in strings
Chayim Refael Friedman 6 weeks ago
parent b917d70 · parent d9d29d5 · commit 71138f2
-rw-r--r--editors/code/package.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 29cbc8bd4f..67570cd067 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -3296,6 +3296,13 @@
}
],
"configurationDefaults": {
+ "[rust]": {
+ "editor.quickSuggestions": {
+ "other": true,
+ "comments": false,
+ "strings": true
+ }
+ },
"explorer.fileNesting.patterns": {
"Cargo.toml": "Cargo.lock"
}