Warning, /network/falkon/linux/completion/falkon is written in an unsupported language. File is not indexed.

0001 #
0002 # Bash completion for Falkon
0003 #
0004 _falkon()
0005 {
0006     local cur prev opts
0007     COMPREPLY=()
0008     cur="${COMP_WORDS[COMP_CWORD]}"
0009     prev="${COMP_WORDS[COMP_CWORD-1]}"
0010     opts="-h --help -a --authors -v --version -p --profile=
0011           -e --no-extensions -o --portable -t --new-tab
0012           -w --new-window -i --private-browsing -d --download-manager
0013           -f --fullscreen -r --no-remote -c --current-tab=
0014           -u --open-window= --wmclass"
0015 
0016     if [[ ${cur} == -* ]] ; then
0017         COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
0018     else
0019         _filedir
0020     fi
0021 }
0022 complete -F _falkon falkon