mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Adding simple bash completion
This commit is contained in:
parent
572bf8e655
commit
dd2f480187
1 changed files with 18 additions and 0 deletions
18
contrib/completion/mas-completion.bash
Normal file
18
contrib/completion/mas-completion.bash
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
_mas()
|
||||
{
|
||||
local cur prev words cword;
|
||||
if declare -F _init_completions >/dev/null 2>&1; then
|
||||
_init_completion
|
||||
else
|
||||
COMPREPLY=()
|
||||
_get_comp_words_by_ref cur prev words cword
|
||||
fi
|
||||
if [[ $cword -eq 1 ]]; then
|
||||
COMPREPLY=($( compgen -W "$(mas help | tail +3 | awk '{print $1}')" -- "$cur" ));
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
complete -F _mas mas
|
Loading…
Add table
Reference in a new issue