forked from alacritty/alacritty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacritty-completions.fish
72 lines (67 loc) · 1.44 KB
/
alacritty-completions.fish
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Meta
complete -c alacritty \
-s "v" \
-l "version" \
-d "Prints version information"
complete -c alacritty \
-s "h" \
-l "help" \
-d "Prints help information"
# Config
complete -c alacritty \
-l "live-config-reload" \
-d "Enable automatic config reloading"
complete -c alacritty \
-l "no-live-config-reload" \
-d "Disable automatic config reloading"
complete -c alacritty \
-f \
-l "config-file" \
-d "Specify an alternative config file"
complete -c alacritty \
-l "title" \
-d "Defines the window title"
complete -c alacritty \
-x \
-a '(__fish_complete_directories (commandline -ct))' \
-l "working-directory" \
-d "Start shell in specified directory"
# Output
complete \
-c alacritty \
-l "print-events" \
-d "Print all events to stdout"
complete \
-c alacritty \
-s "q" \
-d "Reduces the level of verbosity (min is -qq)"
complete \
-c alacritty \
-s "qq" \
-d "Reduces the level of verbosity"
complete \
-c alacritty \
-s "v" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-s "vv" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-s "vvv" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-l "ref-test" \
-d "Generates ref test"
complete \
-c alacritty \
-s "d" \
-l "dimensions" \
-d "Window dimensions <columns> <lines>"
complete \
-c alacritty \
-s "e" \
-l "command" \
-d "Execute command (must be last arg)"