Files
fish-shell/share/functions/__fish_indent.fish
Johannes Altmanninger 2c0e912fe1 Mark private functions that don't need localization
See the next commit.

Part of #11833

(cherry picked from commit a53db72564)
2025-09-30 11:52:41 +02:00

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