Show loading spinner as soon as command starts and has output

This commit is contained in:
Saoud Rizwan
2024-09-09 12:39:16 -04:00
parent 5866adb09f
commit d634680fc3
2 changed files with 8 additions and 1 deletions

View File

@@ -1782,7 +1782,7 @@ ${
details += `\n## ${busyTerminal.lastCommand}`
const newOutput = this.terminalManager.getUnretrievedOutput(busyTerminal.id)
if (newOutput) {
details += `\n...\n${newOutput}`
details += `\nNew Output:\n${newOutput}`
} else {
// details += `\n(Still running, no new output)` // don't want to show this right after running the command
}