-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
Purpose of the issue
- Bug report (encountered problems/errors)
- [* ] Feature request (request for new functionality)
- Question
Description of the issue
Given that cmder is slow #188
And probably that is an upstream issue.
Could we have some work-arounds, if you know a command is going to output a lot you can >:NUL or 2>:NUL but if you only find out the command is verbose when running it, you have to sit and wait, or force it to crash.
e.g. running mvn versions:set in my machine takes >10 mins in cmder and a matter of seconds in cmd.exe depending on the size of the repo and the warnings it prints.
Workarounds could be keyboard shortcuts to swallow output after its started until the command ends.
Perhaps Ctrl - O to stop outputting stdout and Ctrl - E to stop outputting error.
Perhaps some way to freeze all output, until the command finishes.
Perhaps some way to redirect to a file instead of screen after the command has started.
Perhaps some way to shrink the screen to size 0 and then printing output would be a noop.
Clearly this would be hard/impossible for console apps but for command line apps it should be feasible.