Change clipboard spec to specify 4096 as the max chunk size in both directions

Makes it consistent and easy to remember. And there is no real reason to
specify it as a hard maximum in only one direction. Fixes #8331
This commit is contained in:
Kovid Goyal
2025-02-15 10:12:28 +05:30
parent f5a7d91603
commit fc8e678eb5

View File

@@ -47,7 +47,7 @@ The terminal emulator will reply with a sequence of escape codes of the form::
Here, the ``status=DATA`` packets deliver the data (as base64 encoded bytes)
associated with each MIME type. The terminal emulator should chunk up the data
for an individual type. A recommended size for each chunk is 4096 bytes. All
for an individual type, into chunks of size **no more** than 4096 bytes. All
the chunks for a given type must be transmitted sequentially and only once they
are done the chunks for the next type, if any, should be sent. The end of data
is indicated by a ``status=DONE`` packet.