Disable buffering when we clear terminal

hopefully fixes an issue reported in Discord
This commit is contained in:
Jarred Sumner
2023-04-05 18:27:43 -07:00
parent 65d646bc68
commit b50f3d3f6f

View File

@@ -1057,6 +1057,8 @@ pub fn reloadProcess(
// Clear the terminal
if (clear_terminal) {
Output.flush();
Output.disableBuffering();
Output.resetTerminalAll();
}