about summary refs log tree commit diff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2022-10-14 09:28:44 +0200
committerGitHub <noreply@github.com>2022-10-14 09:28:44 +0200
commit55fdcbe339a002099c17ba545fb593163fef2011 (patch)
treea04ca7b7d517968f81de35cec88158202596e5ac /editors/code/src/ctx.ts
parent36a70b7435c48837018c71576d7bb4e8f763f501 (diff)
downloadrust-55fdcbe339a002099c17ba545fb593163fef2011.tar.gz
rust-55fdcbe339a002099c17ba545fb593163fef2011.zip
Revert "fix: in VSCode, correctly resolve relative paths to errors"
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index b6c0eedfb16..26510011d43 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -17,10 +17,6 @@ export type Workspace =
       };
 
 export class Ctx {
-    // Helps VS Code to correctly link problems from runnables. This is used by
-    // `rust-analyzer.cargoWorkspaceRootForCurrentRun` command of $rustc-run problem matcher.
-    cargoWorkspaceRootForCurrentRun?: string = undefined;
-
     private constructor(
         readonly config: Config,
         private readonly extCtx: vscode.ExtensionContext,