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 3abc4e4 commit c213186Copy full SHA for c213186
src/vs/workbench/contrib/terminal/browser/terminalInstance.ts
@@ -786,10 +786,7 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
786
if (label.length === 0 || commandMap.has(label)) {
787
continue;
788
}
789
- let description = fromNow(entry.timestamp, true);
790
- if (entry.cwd) {
791
- description += ` @ ${entry.cwd}`;
792
- }
+ let description = `${entry.cwd}`;
793
if (entry.exitCode) {
794
// Since you cannot get the last command's exit code on pwsh, just whether it failed
795
// or not, -1 is treated specially as simply failed
0 commit comments