From 82eac3119033a243a542b103097a0966531767aa Mon Sep 17 00:00:00 2001 From: James Harrison Date: Fri, 18 Jun 2021 22:42:38 +0100 Subject: [PATCH] Update link to fish-shell autoloading functions tutorial. --- Shell-aliases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shell-aliases.md b/Shell-aliases.md index bda2c6d..f171f21 100644 --- a/Shell-aliases.md +++ b/Shell-aliases.md @@ -21,7 +21,7 @@ Add this function to `config.fish`: thefuck --alias | source ``` -To avoid the delay of the shell startup, you could also create an [autoloaded function](https://fishshell.com/docs/current/tutorial.html#tut_autoload). +To avoid the delay of the shell startup, you could also create an [autoloaded function](https://fishshell.com/docs/current/tutorial.html#autoloading-functions). Create a file `~/.config/fish/functions/fuck.fish` instead and paste the output of `thefuck --alias` into that file. Fish should start as fast as before.