fish-shell/share/functions/_.fish
Kurtis Rader e46978fedb simplify previous change to the _ script
There's no need for a local var or echo in a subcommand. Also, fix the
formatting to match the style guide.
2016-08-07 19:29:14 -07:00

13 lines
313 B
Fish

#
# Alias for gettext or a fallback if gettext isn't installed.
#
if command -s gettext >/dev/null
function _ --description "Alias for the gettext command"
command gettext fish $argv
end
else
function _ --description "Fallback alias for the gettext command"
echo -n $argv
end
end