mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
c08d8ca251
See #1109
22 lines
549 B
Plaintext
22 lines
549 B
Plaintext
#
|
|
# 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=
|
|
-ne --no-extensions -nt --new-tab -pb --private-browsing
|
|
-dm --download-manager -nr --no-remote -ct= --current-tab=
|
|
-ow= --open-window="
|
|
|
|
if [[ ${cur} == -* ]] ; then
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
else
|
|
_filedir
|
|
fi
|
|
}
|
|
complete -F _qupzilla qupzilla
|