diff --git a/README.md b/README.md index 1e8fdb54..c88a1946 100644 --- a/README.md +++ b/README.md @@ -580,7 +580,7 @@ device). | Rotate device screen | `RCtrl`+`r` | Expand notification panel | `RCtrl`+`n` | Collapse notification panel | `RCtrl`+`Shift`+`n` - | Paste computer clipboard to device | `RCtrl`+`v` + | Inject computer clipboard text | `RCtrl`+`v` | Enable/disable FPS counter (on stdout) | `RCtrl`+`i` _¹Double-click on black borders to remove them._ diff --git a/app/scrcpy.1 b/app/scrcpy.1 index 232ccf25..0bd18f04 100644 --- a/app/scrcpy.1 +++ b/app/scrcpy.1 @@ -279,7 +279,7 @@ Collapse notification panel .TP .B RCtrl+v -Paste computer clipboard to device +Inject computer clipboard text .TP .B RCtrl+i diff --git a/app/src/cli.c b/app/src/cli.c index c7f10a56..491f23d7 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -243,7 +243,7 @@ scrcpy_print_usage(const char *arg0) { " Collapse notification panel\n" "\n" " RCtrl+v\n" - " Paste computer clipboard to device\n" + " Inject computer clipboard text\n" "\n" " RCtrl+i\n" " Enable/disable FPS counter (print frames/second in logs)\n"