File: _falkon

package info (click to toggle)
falkon 25.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,324 kB
  • sloc: cpp: 66,939; javascript: 21,781; sh: 578; xml: 563; python: 496; sql: 75; makefile: 26
file content (28 lines) | stat: -rw-r--r-- 883 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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