2020-08-06 02:01:19 +08:00
|
|
|
# Completions for xbps-query
|
|
|
|
# Author: Allen Sobot <chilledfrogs@disroot.org>
|
|
|
|
|
|
|
|
set -l progname xbps-query
|
|
|
|
|
2020-09-23 01:24:04 +08:00
|
|
|
set -l listall "(__fish_print_xbps_packages)"
|
|
|
|
set -l listinstalled "(__fish_print_xbps_packages -i)"
|
2020-08-06 02:01:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
complete -c $progname -f
|
|
|
|
complete -c $progname -a "$listinstalled"
|
|
|
|
complete -c $progname -n "__fish_contains_opt -s R" -a "$listall"
|
|
|
|
|
2020-12-15 00:14:46 +08:00
|
|
|
complete -c $progname -s C -d 'Use this XBPS configuration directory' -xa "(__fish_complete_directories)"
|
|
|
|
complete -c $progname -s c -d 'Use this cache directory to store binary packages' -xa "(__fish_complete_directories)"
|
|
|
|
complete -c $progname -s d -d 'Enable extra debugging shown to stderr'
|
|
|
|
complete -c $progname -s h -d 'Show the help message'
|
|
|
|
complete -c $progname -s i -d 'Ignore repositories defined in configuration files'
|
|
|
|
complete -c $progname -s M -d 'For remote repositories, the data is fetched and stored in memory only'
|
|
|
|
complete -c $progname -s p -d 'Only match this package property'
|
|
|
|
complete -c $progname -s R -d 'Enable repository mode'
|
|
|
|
complete -c $progname -l repository -d 'Append the specified repository to the top of the list'
|
|
|
|
complete -c $progname -l regex -d 'Use Extended Regular Expressions'
|
|
|
|
complete -c $progname -l fulldeptree -d 'Print a full dependency tree in the show dependencies mode'
|
|
|
|
complete -c $progname -s r -d 'Use this path for the target root directory' -xa "(__fish_complete_directories)"
|
|
|
|
complete -c $progname -s v -d 'Enables verbose messages'
|
|
|
|
complete -c $progname -s V -d 'Show the version information'
|
|
|
|
complete -c $progname -s l -d 'List registered packages in the package database (pkgdb)'
|
|
|
|
complete -c $progname -s H -d 'List registered packages in the package database (pkgdb) that are on hold'
|
|
|
|
complete -c $progname -s L -d 'List repositories and the number of packages contained on them'
|
|
|
|
complete -c $progname -s m -d 'List packages in the package database (pkgdb) that were installed manually'
|
|
|
|
complete -c $progname -s O -d 'List package orphans in the package database (pkgdb)'
|
|
|
|
complete -c $progname -s o -d 'Search for installed package files by matching PATTERN'
|
|
|
|
complete -c $progname -s S -d 'Shows information of an installed package' -x
|
|
|
|
complete -c $progname -s s -d 'Search for packages by matching PATTERN on pkgver or short_desc'
|
|
|
|
complete -c $progname -s f -d 'Show the package files for PKG' -x
|
|
|
|
complete -c $progname -s x -d 'Show the required dependencies for PKG. Only direct dependencies are shown' -x
|
|
|
|
complete -c $progname -s X -d 'Show the reverse dependencies for PKG' -x
|
|
|
|
complete -c $progname -l cat -d 'Prints the file FILE stored in binary package PKG to stdout' -F
|