Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions doc/api/tty.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,11 @@ added: v0.7.7
Allows configuration of `tty.ReadStream` so that it operates as a raw device.

When in raw mode, input is always available character-by-character, not
including modifiers. Additionally, all special processing of characters by the
terminal is disabled, including echoing input
including modifiers. Additionally, all special processing of input characters
by the terminal is disabled, including echoing input
characters. <kbd>Ctrl</kbd>+<kbd>C</kbd> will no longer cause a `SIGINT` when
in this mode.
in this mode. This mode does not affect terminal output processing, such as
newline translation on Unix terminals.

## Class: `tty.WriteStream`

Expand Down
Loading