1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 02:02:10 +02:00
falkonOfficial/linux/completion/zsh_completion.sh
nowrep b9858f98a4 Added basic bash and zsh autocompletion files.
Bash autocompletion will be installed by default with
make install.
Zsh autocompletion has to be installed manually, more on that
in linux/completion/README
2013-03-04 13:23:04 +01:00

23 lines
695 B
Bash

#compdef qupzilla
opts=(
'(-)'{-h,--help}'[print usage help]'
'(-)'{-a,--authors}'[print QupZilla authors]'
'(-)'{-v,--version}'[print QupZilla version]'
'(-)'{-p=,--profile=}'[start with specified profile]'
'(-)'{-ne,--no-extensions}'[start without extensions]'
'(-)'{-nt,--new-tab}'[open new tab]'
'(-)'{-nw,--new-window}'[open new window]'
'(-)'{-pb,--private-browsing}'[start private browsing]'
'(-)'{-dm,--download-manager}'[show download manager]'
'(-)'{-nr,--no-remote}'[open new instance]'
'(-)'{-ct=,--current-tab=}'[open URL in current tab]'
'(-)'{-ow=,--open-window=}'[open URL in new window]'
)
_x_arguments -C $opts
return 0