fish-shell/share/functions/__fish_print_pkg_packages.fish
Fabian Homborg 24012b1941 __fish_print_packages: Break apart
This function doesn't make any sense.

Most things that expect package names expect package names for *one
specific package manager*.

It only happens to work, most of the time, because most people only
have one package manager installed.
2020-12-22 17:10:02 +01:00

10 lines
231 B
Fish

function __fish_print_pkg_packages
# Pkg is fast on FreeBSD and provides versioning info which we want for
# installed packages
if type -q -f pkg
pkg query "%n-%v"
return 0
end
return 1
end