2017-08-25 17:11:29 +02:00
|
|
|
#compdef falkon
|
2013-12-18 18:09:17 +01:00
|
|
|
#
|
2017-08-25 17:11:29 +02:00
|
|
|
# Zsh completion for Falkon
|
2013-12-18 18:09:17 +01:00
|
|
|
#
|
2013-03-04 13:23:04 +01:00
|
|
|
opts=(
|
|
|
|
'(-)'{-h,--help}'[print usage help]'
|
2017-08-25 17:11:29 +02:00
|
|
|
'(-)'{-a,--authors}'[print Falkon authors]'
|
|
|
|
'(-)'{-v,--version}'[print Falkon version]'
|
2013-03-04 13:23:04 +01:00
|
|
|
|
2016-07-31 14:35:02 +02:00
|
|
|
'(-)'{-p,--profile=}'[start with specified profile]'
|
|
|
|
'(-)'{-e,--no-extensions}'[start without extensions]'
|
|
|
|
'(-)'{-o,--portable}'[start in portable mode]'
|
2013-03-04 13:23:04 +01:00
|
|
|
|
2016-07-31 14:35:02 +02:00
|
|
|
'(-)'{-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]'
|
2013-12-18 18:09:17 +01:00
|
|
|
'*:files:_files'
|
2013-03-04 13:23:04 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
_x_arguments -C $opts
|
|
|
|
|
|
|
|
return 0
|