mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-28 15:51:13 -03:00
11 lines
256 B
Fish
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
|