From 4906c680c67e9a989d773c4c0409d5b7ad56362a Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 30 Oct 2022 22:07:15 -0700 Subject: [PATCH] remove fish_indent wrapper When this was introduced, we used fish_indent --ansi to format the output of `builtin functions` for color output in `type`, etc. We don't anymore. Today it's not a potential showstopper if one launches a fish session with a five year-old fish_indent in $PATH. We need not go to lengths to try to make sure we run whatever is in the build dir adjacent to the `fish` binary. --- share/functions/fish_indent.fish | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 share/functions/fish_indent.fish diff --git a/share/functions/fish_indent.fish b/share/functions/fish_indent.fish deleted file mode 100644 index 5f0e0ab7e..000000000 --- a/share/functions/fish_indent.fish +++ /dev/null @@ -1,9 +0,0 @@ -# check if command fish_indent works and is the same version that -# came with this fish. This will happen one time. -command -sq fish_indent -and command fish_indent --version 2>&1 | string match -rq $version -# if we don't define the function here, this is an autoloaded "nothing". -# the command (if there is one) will be used by default. -or function fish_indent - $__fish_bin_dir/fish_indent $argv -end