Skip to main content

Module paste

Module paste 

Source
Expand description

Bracketed-paste delimiter sequences.

§Category

These constants are the byte markers terminals send around pasted text when bracketed paste is enabled.

§CSI format

The start marker is ESC [ 200 ~; the end marker is ESC [ 201 ~. Bytes between them are pasted data, not terminal control input.

§Mode interaction

Enable or disable the reports with Mode::BRACKETED_PASTE, DEC private mode 2004.

Constants§

BRACKETED_PASTE_END
End delimiter for bracketed paste: exact bytes ESC [ 201 ~ (b"\x1b[201~").
BRACKETED_PASTE_START
Start delimiter for bracketed paste: exact bytes ESC [ 200 ~ (b"\x1b[200~").