1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/linux/completion/_qupzilla

28 lines
858 B
Plaintext
Raw Normal View History

#compdef qupzilla
#
# Zsh completion for 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]'
2014-01-28 11:29:08 +01:00
'(-)'{-po,--portable}'[start in portable mode]'
'(-)'{-nt,--new-tab}'[open new tab]'
'(-)'{-nw,--new-window}'[open new window]'
'(-)'{-pb,--private-browsing}'[start private browsing]'
'(-)'{-dm,--download-manager}'[show download manager]'
2014-01-28 11:29:08 +01:00
'(-)'{-fs,--fullscreen}'[toggle fullscreen]'
'(-)'{-nr,--no-remote}'[open new browser instance]'
'(-)'{-ct=,--current-tab=}'[open URL in current tab]'
'(-)'{-ow=,--open-window=}'[open URL in new window]'
'*:files:_files'
)
_x_arguments -C $opts
return 0