Skip to content

Commit c213186

Browse files
committed
1 parent 3abc4e4 commit c213186

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -786,10 +786,7 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
786786
if (label.length === 0 || commandMap.has(label)) {
787787
continue;
788788
}
789-
let description = fromNow(entry.timestamp, true);
790-
if (entry.cwd) {
791-
description += ` @ ${entry.cwd}`;
792-
}
789+
let description = `${entry.cwd}`;
793790
if (entry.exitCode) {
794791
// Since you cannot get the last command's exit code on pwsh, just whether it failed
795792
// or not, -1 is treated specially as simply failed

0 commit comments

Comments
 (0)