2015-04-08 16:49:58 +00:00
|
|
|
# Completions for the `apt` command
|
|
|
|
|
2018-05-22 22:29:12 +00:00
|
|
|
set -l all_subcmds update upgrade full-upgrade search list install show remove edit-sources purge changelog autoremove depends rdepends
|
2018-07-02 16:40:01 +00:00
|
|
|
set -l pkg_subcmds install upgrade full-upgrade show search purge changelog policy depends rdepends
|
|
|
|
set -l installed_pkg_subcmds remove
|
2018-05-20 19:07:56 +00:00
|
|
|
|
2015-04-08 16:49:58 +00:00
|
|
|
function __fish_apt_subcommand
|
2017-08-21 20:30:10 +00:00
|
|
|
set subcommand $argv[1]
|
|
|
|
set -e argv[1]
|
2018-05-22 22:29:12 +00:00
|
|
|
complete -f -c apt -n "not __fish_seen_subcommand_from $all_subcmds" -a $subcommand $argv
|
2017-08-21 20:30:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_apt_option
|
|
|
|
set subcommand $argv[1]
|
|
|
|
set -e argv[1]
|
2018-05-20 19:07:56 +00:00
|
|
|
complete -f -c apt -n "__fish_seen_subcommand_from $subcommand" $argv
|
2017-08-21 20:30:10 +00:00
|
|
|
end
|
|
|
|
|
2018-11-15 18:37:29 +00:00
|
|
|
complete -c apt -n "__fish_seen_subcommand_from $pkg_subcmds" -a '(__fish_print_packages | head -n 250)'
|
2018-11-17 02:21:05 +00:00
|
|
|
complete -c apt -n "__fish_seen_subcommand_from $installed_pkg_subcmds" -a '(__fish_print_packages --installed | string match -re -- "(?:\\b|_)"(commandline -ct | string escape --style=regex) | head -n 250)' -d 'Package'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Support flags
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -x -f -c apt -s h -l help -d 'Display help'
|
|
|
|
complete -x -f -c apt -s v -l version -d 'Display version and exit'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# General options
|
2017-10-11 17:17:35 +00:00
|
|
|
complete -f -c apt -s o -l option -d 'Set a configuration option'
|
|
|
|
complete -f -c apt -s c -l config-file -d 'Configuration file'
|
|
|
|
complete -f -c apt -s t -d 'Target release'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# List
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand list -d 'List packages'
|
|
|
|
__fish_apt_option list -l installed -d 'Installed packages'
|
|
|
|
__fish_apt_option list -l upgradable -d 'Upgradable packages'
|
|
|
|
__fish_apt_option list -l all-versions -d 'Show all versions of any package'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Search
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand search -r -d 'Search for packages'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Search
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand show -r -d 'Show package information'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Install
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand install -r -d 'Install packages'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Remove
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand remove -r -d 'Remove packages'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Edit sources
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand edit-sources -d 'Edit sources list'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Update
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand update -x -d 'Update package list'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Upgrade
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand upgrade -r -d 'Upgrade packages'
|
2015-04-08 16:49:58 +00:00
|
|
|
|
|
|
|
# Full Upgrade
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand full-upgrade -r -d 'Upgrade packages, removing others when needed'
|
2016-05-31 22:56:22 +00:00
|
|
|
|
|
|
|
# Purge
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand purge -x -d 'Remove packages and delete their config files'
|
2017-01-03 18:43:55 +00:00
|
|
|
|
|
|
|
# Changelog
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand changelog -r -d 'Download and display package changelog'
|
2017-01-24 18:55:42 +00:00
|
|
|
|
|
|
|
# Autoremove
|
2017-10-11 17:17:35 +00:00
|
|
|
__fish_apt_subcommand autoremove -d 'Remove packages no longer needed as dependencies'
|
2018-01-13 03:03:36 +00:00
|
|
|
|
|
|
|
# Policy
|
|
|
|
__fish_apt_subcommand policy -x -d 'Display source or package priorities'
|
2018-02-19 10:45:35 +00:00
|
|
|
|
|
|
|
# Depends
|
|
|
|
__fish_apt_subcommand depends -r -d 'List package dependencies'
|
|
|
|
|
|
|
|
# Rdepends
|
|
|
|
__fish_apt_subcommand rdepends -r -d 'List package reverse dependencies'
|