From 44bc951553fa964367b06ad847f84af67b5f08a5 Mon Sep 17 00:00:00 2001 From: "Craig Macomber (Microsoft)" <42876482+CraigMacomber@users.noreply.github.com> Date: Fri, 5 May 2023 11:53:48 -0700 Subject: [PATCH] Remove terminal override for tree workspace (#15471) ## Description For some cases (ex: Terminal menu-> new) vscode prompts me for which place I want to create a terminal when I make a new terminal in the workspace. As is, if I pick tree2, it puts the terminal at the repo root, and if I pick fluid-framework it puts the terminal 3 directories above the repo root. With this change it behaves as expected. --- experimental/dds/tree2/.vscode/Tree.code-workspace | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/experimental/dds/tree2/.vscode/Tree.code-workspace b/experimental/dds/tree2/.vscode/Tree.code-workspace index e0f93ab1f2bf..54f3fb2ee25c 100644 --- a/experimental/dds/tree2/.vscode/Tree.code-workspace +++ b/experimental/dds/tree2/.vscode/Tree.code-workspace @@ -9,7 +9,5 @@ "path": ".." } ], - "settings": { - "terminal.integrated.cwd": "../../.." - } + "settings": {} }