We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78fe45e commit 09677b0Copy full SHA for 09677b0
src/tools/rust-analyzer/editors/code/src/debug.ts
@@ -194,8 +194,8 @@ function getCCppDebugConfig(
194
args: runnable.args.executableArgs,
195
cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".",
196
sourceFileMap,
197
- environment: Object.entries(env).map(entry => {
198
- return { "name": entry[0], "value": entry[1] };
+ environment: Object.entries(env).map((entry) => {
+ return { name: entry[0], value: entry[1] };
199
}),
200
// See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941
201
osx: {
0 commit comments