1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/linux/completion/_falkon
Christoph Cullmann 5bb7e9cfcf Add --wmclass argument to linux completion files
Reviewers: #falkon, drosca

Reviewed By: #falkon, drosca

Subscribers: cullmann, falkon

Tags: #falkon

Differential Revision: https://phabricator.kde.org/D18667
2019-02-02 16:24:27 +01:00

29 lines
883 B
Plaintext

#compdef falkon
#
# Zsh completion for Falkon
#
opts=(
'(-)'{-h,--help}'[print usage help]'
'(-)'{-a,--authors}'[print Falkon authors]'
'(-)'{-v,--version}'[print Falkon 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]'
'--wmclass[application class (X11 only)]'
'*:files:_files'
)
_x_arguments -C $opts
return 0