Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'docs/book/src/editor_features.md')
| -rw-r--r-- | docs/book/src/editor_features.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/book/src/editor_features.md b/docs/book/src/editor_features.md index 73fe9f49a9..5521e395c7 100644 --- a/docs/book/src/editor_features.md +++ b/docs/book/src/editor_features.md @@ -1,6 +1,5 @@ # Editor Features - ## VS Code ### Color configurations @@ -118,7 +117,7 @@ Or it is possible to specify vars more granularly: "rust-analyzer.runnables.extraEnv": [ { // "mask": null, // null mask means that this rule will be applied for all runnables - env: { + "env": { "APP_ID": "1", "APP_DATA": "asdf" } @@ -145,7 +144,7 @@ If needed, you can set different values for different platforms: "rust-analyzer.runnables.extraEnv": [ { "platform": "win32", // windows only - env: { + "env": { "APP_DATA": "windows specific data" } }, |