Add auto-completion for --codec option

Add missing command to bash and zsh completion scripts.
This commit is contained in:
Romain Vimont
2023-02-21 19:48:28 +01:00
parent 5d6bcc5966
commit 3e3756a323
2 changed files with 6 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ _scrcpy() {
local opts="
--always-on-top
-b --bit-rate=
--codec=
--codec-options=
--crop=
-d --select-usb
@@ -64,6 +65,10 @@ _scrcpy() {
_init_completion -s || return
case "$prev" in
--codec)
COMPREPLY=($(compgen -W 'h264 h265 av1' -- "$cur"))
return
;;
--lock-video-orientation)
COMPREPLY=($(compgen -W 'unlocked initial 0 1 2 3' -- "$cur"))
return