Files
fish-shell/share/functions/__fish_print_pkg_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
256 B
Fish

# localization: skip(private)
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