We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f33e8 commit f6c9242Copy full SHA for f6c9242
src/vs/workbench/contrib/terminal/browser/terminalTooltip.ts
@@ -95,7 +95,7 @@ export function refreshShellIntegrationInfoStatus(instance: ITerminalInstance) {
95
if (instance.shellType) {
96
detailedAdditions.push(`Shell type: \`${instance.shellType}\``);
97
}
98
- const cwd = instance.capabilities.get(TerminalCapability.CwdDetection)?.getCwd() || instance.cwd;
+ const cwd = instance.cwd;
99
if (cwd) {
100
detailedAdditions.push(`Current working directory: \`${cwd}\``);
101
0 commit comments