You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
845 B
27 lines
845 B
#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]' |
|
'(-)'{-e,--no-extensions}'[start without extensions]' |
|
'(-)'{-o,--portable}'[start in portable mode]' |
|
|
|
'(-)'{-t,--new-tab}'[open new tab]' |
|
'(-)'{-w,--new-window}'[open new window]' |
|
'(-)'{-i,--private-browsing}'[start private browsing]' |
|
'(-)'{-d,--download-manager}'[show download manager]' |
|
'(-)'{-f,--fullscreen}'[toggle fullscreen]' |
|
'(-)'{-r,--no-remote}'[open new browser instance]' |
|
'(-)'{-c,--current-tab=}'[open URL in current tab]' |
|
'(-)'{-u,--open-window=}'[open URL in new window]' |
|
'*:files:_files' |
|
) |
|
|
|
_x_arguments -C $opts |
|
|
|
return 0
|
|
|