mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
aba79c277e
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
17 lines
537 B
Text
17 lines
537 B
Text
_multivalent-tool-pdf()
|
|
{
|
|
local cur prev opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
opts="Compress Convert Decrypt Diff Embed Encrypt Extract Impose Info Markup Merge Repair Split Stamp Uncompact Uncompress Undo Validate"
|
|
|
|
if [[ $prev == "multivalent-tool-pdf" ]] ; then
|
|
COMPREPLY=( $(compgen -W "$opts" -- $cur) )
|
|
return 0
|
|
else
|
|
COMPREPLY=( $(compgen -f $cur) )
|
|
return 0
|
|
fi
|
|
}
|
|
complete -F _multivalent-tool-pdf multivalent-tool-pdf
|