respondClipboardLoad method

void respondClipboardLoad(
  1. String text
)

Answer a pending OSC 52 paste request with text (host reads the system clipboard, then calls this). Encoded reply goes out on output.

Implementation

void respondClipboardLoad(String text) {
  _ensureBound();
  _binding!.respondClipboardLoad(text);
  _client!.pumpEventsNow();
}