You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
595 B
22 lines
595 B
# |
|
# Bash completion for QupZilla |
|
# |
|
_qupzilla() |
|
{ |
|
local cur prev opts |
|
COMPREPLY=() |
|
cur="${COMP_WORDS[COMP_CWORD]}" |
|
prev="${COMP_WORDS[COMP_CWORD-1]}" |
|
opts="-h --help -a --authors -v --version -p --profile= |
|
-e --no-extensions -o --portable -t --new-tab |
|
-w --new-window -i --private-browsing -d --download-manager |
|
-f --fullscreen -r --no-remote -c --current-tab= |
|
-u --open-window=" |
|
|
|
if [[ ${cur} == -* ]] ; then |
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) |
|
else |
|
_filedir |
|
fi |
|
} |
|
complete -F _qupzilla qupzilla
|
|
|