Controls what byte sequence the backspace key sends.
Backspace key sends ^H (0x08). Use for servers that expect the traditional backspace byte. The Delete key sends DEL (0x7f) instead.
Backspace key sends DEL (0x7f). This is the default. The Delete key sends ESC[3~.