Skip to content

lflags

const lflags: object

Defined in: src/drivers/tty/termios.ts:30

Local flags, i.e. c_lflag

readonly ECHO: 8 = 0x0008

Echo input back to the terminal

readonly ECHOE: 16 = 0x0010

Erase erases the character on screen, rather than just in the buffer

readonly ECHONL: 64 = 0x0040

Echo NL even when ECHO is off

readonly ICANON: 2 = 0x0002

Line-at-a-time input, with editing. Without this every byte is handed over as it arrives.

readonly ISIG: 1 = 0x0001

Turn the interrupt, quit and suspend characters into signals