Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index c7b877b289..265c63f3e2 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -27,7 +27,7 @@
}
},
"engines": {
- "vscode": "^1.75.0"
+ "vscode": "^1.78.0"
},
"enabledApiProposals": [],
"scripts": {
@@ -54,7 +54,7 @@
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/node": "~16.11.7",
- "@types/vscode": "~1.75",
+ "@types/vscode": "~1.78.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.3",
@@ -156,7 +156,7 @@
},
{
"command": "rust-analyzer.expandMacro",
- "title": "Expand macro recursively",
+ "title": "Expand macro recursively at caret",
"category": "rust-analyzer"
},
{
@@ -210,11 +210,6 @@
"category": "rust-analyzer"
},
{
- "command": "rust-analyzer.addProject",
- "title": "Add current file's crate to workspace",
- "category": "rust-analyzer"
- },
- {
"command": "rust-analyzer.restartServer",
"title": "Restart server",
"category": "rust-analyzer"
@@ -1129,11 +1124,16 @@
"default": true,
"type": "boolean"
},
- "rust-analyzer.imports.prefer.no.std": {
+ "rust-analyzer.imports.preferNoStd": {
"markdownDescription": "Prefer to unconditionally use imports of the core and alloc crate, over the std crate.",
"default": false,
"type": "boolean"
},
+ "rust-analyzer.imports.preferPrelude": {
+ "markdownDescription": "Whether to prefer import paths containing a `prelude` module.",
+ "default": false,
+ "type": "boolean"
+ },
"rust-analyzer.imports.prefix": {
"markdownDescription": "The path structure for newly inserted paths to use.",
"default": "plain",