mas/contrib/completion/mas.fish

84 lines
4.4 KiB
Fish
Raw Normal View History

2019-01-29 22:20:16 +00:00
# fish completions for mas
function __fish_mas_list_available -d "Lists applications available to install from the Mac App Store"
set query (commandline -ct)
if set results (command mas search $query 2>/dev/null)
for res in $results
echo $res
end | string trim --left | string replace -r '\s+' '\t'
end
end
function __fish_mas_list_installed -d "Lists installed applications from the Mac App Store"
command mas list 2>/dev/null \
| string replace -r '\s+' '\t'
end
function __fish_mas_outdated_installed -d "Lists outdated installed applications from the Mac App Store"
command mas outdated 2>/dev/null \
| string replace -r '\s+' '\t'
end
# no file completions in mas
complete -c mas -f
2019-01-29 22:20:16 +00:00
### account
complete -c mas -n "__fish_use_subcommand" -f -a account -d "Prints the primary account Apple ID"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "account"
2019-01-29 22:20:16 +00:00
### help
complete -c mas -n "__fish_use_subcommand" -f -a help -d "Display general or command-specific help"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "help"
2019-01-29 22:20:16 +00:00
### home
complete -c mas -n "__fish_use_subcommand" -f -a home -d "Opens MAS Preview app page in a browser"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "home"
complete -c mas -n "__fish_seen_subcommand_from home info install open vendor" -xa "(__fish_mas_list_available)"
2019-01-29 22:20:16 +00:00
### info
complete -c mas -n "__fish_use_subcommand" -f -a info -d "Display app information from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "info"
2019-01-29 22:20:16 +00:00
### install
complete -c mas -n "__fish_use_subcommand" -f -a install -d "Install from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "install"
complete -c mas -n "__fish_seen_subcommand_from install lucky" -l force -d "Force reinstall"
2019-01-29 22:20:16 +00:00
### list
complete -c mas -n "__fish_use_subcommand" -f -a list -d "Lists apps from the Mac App Store which are currently installed"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "list"
2019-01-29 22:20:16 +00:00
### lucky
complete -c mas -n "__fish_use_subcommand" -f -a lucky -d "Install the first result from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "lucky"
2019-01-29 22:20:16 +00:00
### open
complete -c mas -n "__fish_use_subcommand" -f -a open -d "Opens app page in 'App Store.app'"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "open"
2019-01-29 22:20:16 +00:00
### outdated
complete -c mas -n "__fish_use_subcommand" -f -a outdated -d "Lists pending updates from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "outdated"
2019-01-29 22:20:16 +00:00
### reset
complete -c mas -n "__fish_use_subcommand" -f -a reset -d "Resets the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "reset"
2019-01-29 22:20:16 +00:00
complete -c mas -n "__fish_seen_subcommand_from reset" -l debug -d "Enable debug mode"
### search
complete -c mas -n "__fish_use_subcommand" -f -a search -d "Search for apps from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "search"
2019-01-29 22:20:16 +00:00
complete -c mas -n "__fish_seen_subcommand_from search" -l price -d "Show price of found apps"
### signin
complete -c mas -n "__fish_use_subcommand" -f -a signin -d "Sign in to the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "signin"
complete -c mas -n "__fish_seen_subcommand_from signin" -l dialog -d "Complete login with graphical dialog"
2019-01-29 22:20:16 +00:00
### signout
complete -c mas -n "__fish_use_subcommand" -f -a signout -d "Sign out of the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "signout"
2019-01-29 22:20:16 +00:00
### uninstall
complete -c mas -n "__fish_use_subcommand" -f -a uninstall -d "Uninstall app installed from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "uninstall"
2019-01-29 22:20:16 +00:00
complete -c mas -n "__fish_seen_subcommand_from uninstall" -l dry-run -d "Dry run mode"
complete -c mas -n "__fish_seen_subcommand_from uninstall" -x -a "(__fish_mas_list_installed)"
2019-01-29 22:20:16 +00:00
### upgrade
complete -c mas -n "__fish_use_subcommand" -f -a upgrade -d "Upgrade outdated apps from the Mac App Store"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "upgrade"
complete -c mas -n "__fish_seen_subcommand_from upgrade" -x -a "(__fish_mas_outdated_installed)"
2019-01-29 22:20:16 +00:00
### vendor
complete -c mas -n "__fish_use_subcommand" -f -a vendor -d "Opens vendor's app page in a browser"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "vendor"
2019-01-29 22:20:16 +00:00
### version
complete -c mas -n "__fish_use_subcommand" -f -a version -d "Print version number"
complete -c mas -n "__fish_seen_subcommand_from help" -xa "version"