mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
04d7d89020
Of note: The rpm/yum thing seems to be coupled, so I put it into one function that tries the yum helper and uses the rpm path otherwise. Zypper is already its own thing, so this should only be used for yum and probably dnf (does that still have the helper?) Zypper can be dropped, as that already used a separate function in the file. Apk can just be inlined - it's literally one line for installed and another for all packages.
5 lines
358 B
Fish
5 lines
358 B
Fish
|
|
complete -c dlocate -s S -x -d 'List records that match filenames'
|
|
complete -c dlocate -s L -d 'List all files in the package' -xa '(__fish_print_apt_packages)'
|
|
complete -c dlocate -o ls -d 'ls -ldF all files in the package' -xa '(__fish_print_apt_packages)'
|
|
complete -c dlocate -o du -d 'du -sck all files in the package' -xa '(__fish_print_apt_packages)'
|