mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
5bb7e9cfcf
Reviewers: #falkon, drosca Reviewed By: #falkon, drosca Subscribers: cullmann, falkon Tags: #falkon Differential Revision: https://phabricator.kde.org/D18667
23 lines
597 B
Plaintext
23 lines
597 B
Plaintext
#
|
|
# Bash completion for Falkon
|
|
#
|
|
_falkon()
|
|
{
|
|
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= --wmclass"
|
|
|
|
if [[ ${cur} == -* ]] ; then
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
else
|
|
_filedir
|
|
fi
|
|
}
|
|
complete -F _falkon falkon
|