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

Part of #11833
2025-09-30 11:47:26 +02:00

11 lines
277 B
Fish

# localization: skip(private)
function __fish_print_port_packages
type -q -f port || return 1
__fish_cached -t 250 -k port '
printf "all\ncurrent\nactive\ninactive\ninstalled\nuninstalled\noutdated\n"
port echo all | awk \'{$1=$1};1\'
'
return 0
end