Warning, /network/falkon/linux/completion/_falkon is written in an unsupported language. File is not indexed.
0001 #compdef falkon 0002 # 0003 # Zsh completion for Falkon 0004 # 0005 opts=( 0006 '(-)'{-h,--help}'[print usage help]' 0007 '(-)'{-a,--authors}'[print Falkon authors]' 0008 '(-)'{-v,--version}'[print Falkon version]' 0009 0010 '(-)'{-p,--profile=}'[start with specified profile]' 0011 '(-)'{-e,--no-extensions}'[start without extensions]' 0012 '(-)'{-o,--portable}'[start in portable mode]' 0013 0014 '(-)'{-t,--new-tab}'[open new tab]' 0015 '(-)'{-w,--new-window}'[open new window]' 0016 '(-)'{-i,--private-browsing}'[start private browsing]' 0017 '(-)'{-d,--download-manager}'[show download manager]' 0018 '(-)'{-f,--fullscreen}'[toggle fullscreen]' 0019 '(-)'{-r,--no-remote}'[open new browser instance]' 0020 '(-)'{-c,--current-tab=}'[open URL in current tab]' 0021 '(-)'{-u,--open-window=}'[open URL in new window]' 0022 '--wmclass[application class (X11 only)]' 0023 '*:files:_files' 0024 ) 0025 0026 _x_arguments -C $opts 0027 0028 return 0