Pablo Aguiar
Pablo Aguiar
Please post the complete error message for: ```zsh TF_SHELL=zsh THEFUCK_REQUIRE_CONFIRMATION=false thefuck "echoo ok" ```
Would be nice to see which line in `thefuck`'s source code the exception is raised at. I only see that in regards to `psutil`'s source code. Any idea why it's...
> What happens when you run: > > ``` > THEFUCK_DEBUG=true thefuck --version > ``` > > Back when I first encountered the error the above command was the simplest...
Wait. I guess there's nothing wrong with The Fuck. What happens if you try the following? ```fish python -c 'import psutil' ```
I mean... there could be a try/except around those imports and then a flag to use `psutil` or not. But then, could the number of processes spawned by The Fuck...
Yeah, but should The Fuck support on such cases? I'm not quite sure. I have my reservations in regards to creating zombies and expecting the user to terminate them.
The major issue would be the zombie processes. Check this out: https://github.com/nvbn/thefuck/blob/841e3f9e13f52747c18319b55c77ece8095df306/thefuck/output_readers/rerun.py#L10-L43 Not only a long-running process (like vim or some other that requires user input) couldn't be killed, it's...
I'm in favor of it if we're talking about stating that we won't support Python 2 moving forward and removing it from the workflow and from `setup.py`. But I think...
Seems to me that this is the `history` rule yielding different results for different shells, as they have different histories.
I mean the history rule that "tries to replace command with the most similar command from history". Check the [How it works](https://github.com/nvbn/thefuck#how-it-works) section of the README. Yes, that's possible. You...