mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
34 lines
1.6 KiB
Fish
34 lines
1.6 KiB
Fish
#completion for apt-mark
|
|
|
|
function __fish_apt_no_subcommand -d 'Test if apt has yet to be given the subcommand'
|
|
for i in (commandline -opc)
|
|
if contains -- $i auto manual hold unhold showauto showmanual showhold
|
|
return 1
|
|
end
|
|
end
|
|
return 0
|
|
end
|
|
|
|
function __fish_apt_use_package -d 'Test if apt command should have packages as potential completion'
|
|
for i in (commandline -opc)
|
|
if contains -- $i contains auto manual hold unhold
|
|
return 0
|
|
end
|
|
end
|
|
return 1
|
|
end
|
|
|
|
complete -c apt-mark -n __fish_apt_use_package -a '(__fish_print_packages)' -d Package
|
|
|
|
complete -c apt-mark -s h -l help -d 'Display help and exit'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a auto -d 'Mark a package as automatically installed'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a manual -d 'Mark a package as manually installed'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a hold -d 'Hold a package, prevent automatic installation or removal'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a unhold -d 'Cancel a hold on a package'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a showauto -d 'Show automatically installed packages'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a showmanual -d 'Show manually installed packages'
|
|
complete -f -n __fish_apt_no_subcommand -c apt-mark -a showhold -d 'Show held packages'
|
|
complete -c apt-mark -s v -l version -d 'Display version and exit'
|
|
complete -r -c apt-mark -s c -l config-file -d 'Specify a config file'
|
|
complete -r -c apt-mark -s o -l option -d 'Set a config option'
|
|
complete -r -c apt-mark -s f -l file -d 'Write package statistics to a file'
|