From 65edae0ca6aea7b98a78be1e0123b043f1da462c Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Mon, 1 Jun 2020 15:55:42 +0200 Subject: [PATCH] Reformulate RCtrl+v description RCtrl+v is the only scrcpy shortcut related to copy-paste. Since it's not a real "paste", reformulate to indicate that it injects the clipboard content as text events. --- README.md | 2 +- app/scrcpy.1 | 2 +- app/src/cli.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"