DelKeyMode

sealed class DelKeyMode(source)

Controls what byte sequence the backspace key sends.

Inheritors

Types

Link copied to clipboard
data object Backspace : DelKeyMode

Backspace key sends ^H (0x08). Use for servers that expect the traditional backspace byte. The Delete key sends DEL (0x7f) instead.

Link copied to clipboard
data object Delete : DelKeyMode

Backspace key sends DEL (0x7f). This is the default. The Delete key sends ESC[3~.