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.
This commit is contained in:
Aaron Gyes
2022-10-30 22:07:15 -07:00
parent 02998aba76
commit 4906c680c6

View File

@@ -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