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.
2 parents 769275a + f6c9242 commit 6194395Copy full SHA for 6194395
src/vs/workbench/contrib/terminal/browser/terminalTooltip.ts
@@ -95,6 +95,10 @@ export function refreshShellIntegrationInfoStatus(instance: ITerminalInstance) {
95
if (instance.shellType) {
96
detailedAdditions.push(`Shell type: \`${instance.shellType}\``);
97
}
98
+ const cwd = instance.cwd;
99
+ if (cwd) {
100
+ detailedAdditions.push(`Current working directory: \`${cwd}\``);
101
+ }
102
const seenSequences = Array.from(instance.xterm.shellIntegration.seenSequences);
103
if (seenSequences.length > 0) {
104
detailedAdditions.push(`Seen sequences: ${seenSequences.map(e => `\`${e}\``).join(', ')}`);
0 commit comments