Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorMegan Rogge <merogge@microsoft.com>2022-07-27 18:58:49 +0300
committerGitHub <noreply@github.com>2022-07-27 18:58:49 +0300
commit43bce132f90421f58e8b83e6cbdc708bf9feffd3 (patch)
tree41b4610fcc3742cb899a466f645e093c70c51494 /src/vs
parent482da8664a8e28e86439bd6eb9a8c743b9997ada (diff)
fix shell integration link (#156455)
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts
index 964be5b8eb5..54373968a49 100644
--- a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts
+++ b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts
@@ -442,7 +442,7 @@ export class DecorationAddon extends Disposable implements ITerminalAddon {
const labelAbout = localize("terminal.learnShellIntegration", 'Learn About Shell Integration');
actions.push({
class: undefined, tooltip: labelAbout, dispose: () => { }, id: 'terminal.learnShellIntegration', label: labelAbout, enabled: true,
- run: () => this._openerService.open('https://code.visualstudio.com/docs/editor/integrated-terminal#_shell-integration')
+ run: () => this._openerService.open('https://code.visualstudio.com/docs/terminal/shell-integration')
});
return actions;
}