We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3c9ec7 commit bea218aCopy full SHA for bea218a
completions/firefox
@@ -10,7 +10,14 @@ _firefox()
10
case $prev in
11
--help | --version | --display | --UILocale | -MOZ_LOG | --new-window | --new-tab | \
12
--private-window | --window-size | --search | --start-debugger-server | \
13
- --recording | --debugger-args | -[hvPa])
+ --recording | --debugger-args | -[hva])
14
+ return
15
+ ;;
16
+ -P)
17
+ COMPREPLY=($(compgen -W "$(
18
+ awk -F= '$1 == "Name" { print $2 }' \
19
+ ~/.mozilla/firefox/profiles.ini 2>/dev/null
20
+ )" -- "$cur"))
21
return
22
;;
23
--profile | --screenshot)
@@ -21,7 +28,7 @@ _firefox()
28
_filedir log
29
30
24
- --recording-file)
31
+ --recording-output | --recording-file)
25
32
_filedir
26
33
27
34
0 commit comments