1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-25 22:38:46 +00:00

refactor(aliases): update Fish shell function and instructions

Pablo Aguiar 2015-05-20 23:02:43 -03:00
parent 814c78984c
commit 840f1bc513

@ -14,21 +14,31 @@ alias fuck='eval $(thefuck $(fc -ln -1 | tail -n 1)); fc -R'
# Fish # Fish
Add these functions to `config.fish`: Add this function to `config.fish`:
```fish ```fish
function __thefuck_repl -d 'Replace operators into fish-compatible'
set -l tmp (echo $argv | sed 's/ && / ; and /g')
echo $tmp | sed 's/ || / ; or /g'
end
function fuck -d 'Correct your previous console command' function fuck -d 'Correct your previous console command'
set -l exit_code $status
set -l eval_script (mktemp 2>/dev/null ; or mktemp -t 'thefuck') set -l eval_script (mktemp 2>/dev/null ; or mktemp -t 'thefuck')
thefuck $history[1] > $eval_script set -l fucked_up_commandd $history[1]
eval (__thefuck_repl (cat $eval_script)) thefuck $fucked_up_commandd > $eval_script
. $eval_script
rm $eval_script rm $eval_script
if test $exit_code -ne 0
history --delete $fucked_up_commandd
end
end end
``` ```
Alternatively, you can redirect the output of `thefuck-alias`:
```bash
~> thefuck-alias >> ~/.config/fish/config.fish
```
Or, yet, you can create a function:
```bash
~> thefuck-alias > ~/.config/fish/functions/fuck.fish
```
# Powershell # Powershell
Put this in your Powershell `$PROFILE` on Windows: Put this in your Powershell `$PROFILE` on Windows: