mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-12-01 22:51:08 +01:00
Add PASTE extra key for pasting text from clipboard
This commit is contained in:
parent
00d80b9e02
commit
7d76e8b185
11 changed files with 53 additions and 16 deletions
|
|
@ -269,8 +269,13 @@ public final class TerminalSession extends TerminalOutput {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void clipboardText(String text) {
|
||||
mClient.onClipboardText(this, text);
|
||||
public void onCopyTextToClipboard(String text) {
|
||||
mClient.onCopyTextToClipboard(this, text);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPasteTextFromClipboard() {
|
||||
mClient.onPasteTextFromClipboard(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue