mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-03 11:51:15 -03:00
13 lines
335 B
Fish
13 lines
335 B
Fish
# localization: skip(private)
|
|
set -l dir "$(path dirname -- (status fish-path 2>/dev/null))"
|
|
|
|
if command -v $dir/fish_indent >/dev/null
|
|
function __fish_indent --wraps fish_indent --inherit-variable dir
|
|
$dir/fish_indent $argv
|
|
end
|
|
else
|
|
function __fish_indent --wraps fish_indent
|
|
fish_indent $argv
|
|
end
|
|
end
|