mirror of https://github.com/Genymobile/scrcpy
Fix bash completion syntax
PR #4532 <https://github.com/Genymobile/scrcpy/pull/4532> Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
parent
cbce42336d
commit
af69689ec1
|
@ -115,8 +115,7 @@ _scrcpy() {
|
||||||
COMPREPLY=($(compgen -W 'front back external' -- "$cur"))
|
COMPREPLY=($(compgen -W 'front back external' -- "$cur"))
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
--orientation
|
--orientation|--display-orientation)
|
||||||
--display-orientation)
|
|
||||||
COMPREPLY=($(compgen -> '0 90 180 270 flip0 flip90 flip180 flip270' -- "$cur"))
|
COMPREPLY=($(compgen -> '0 90 180 270 flip0 flip90 flip180 flip270' -- "$cur"))
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue