mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-30 17:41:14 -03:00
11 lines
277 B
Fish
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
|