At the moment thefuck is a bit slow because it needs to rerun a previous command to get an output. But that can be fixed if we'll store the output in some sort of log file. That can be done with:
instead of rerunning the previous command just parse the logfile.
This method has some problems, the output will be different with different shells and locales. And we'll have combined output instead of separated stdout/stderr. So we need:
increase count of patterns in rules;
combine stdout and stderr even for a classic mode or just put the output in both for the instant mode.
At the moment thefuck is a bit slow because it needs to rerun a previous command to get an output. But that can be fixed if we'll store the output in some sort of log file. That can be done with:
script
;This method has some problems, the output will be different with different shells and locales. And we'll have combined output instead of separated stdout/stderr. So we need:
Related issues: #660, #576, #353.