From 4f3ab71934d96a7adb888e902ff517c643b9adc9 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Thu, 5 Oct 2017 20:57:08 +0200 Subject: [PATCH] #658: Change configuration code for fish shell --- thefuck/shells/fish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/shells/fish.py b/thefuck/shells/fish.py index 538828d7..9a4d1767 100644 --- a/thefuck/shells/fish.py +++ b/thefuck/shells/fish.py @@ -71,7 +71,7 @@ class Fish(Generic): def how_to_configure(self): return self._create_shell_configuration( - content=u"eval (thefuck --alias | tr '\n' ';')", + content=u"thefuck --alias | source", path='~/.config/fish/config.fish', reload='fish')