From 06646998db4e8ca5ed0932a6f15f54f832b9043c Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Mon, 23 Jun 2025 14:18:15 +0200 Subject: [PATCH] fixup! alias: fix indentation --- share/functions/alias.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/alias.fish b/share/functions/alias.fish index 18e50db94..101a28aaf 100644 --- a/share/functions/alias.fish +++ b/share/functions/alias.fish @@ -67,7 +67,7 @@ function alias --description 'Creates a function wrapping a command' end # The function definition in split in two lines to ensure that a '#' can be put in the body. - echo "function $name $wraps --description $cmd_string"\n"$body \$argv"\n"end" | source + echo "function $name $wraps --description $cmd_string"\n" $body \$argv"\n"end" | source if set -q _flag_save funcsave $name end