MakeInputRaw calls term.MakeRaw on non-Windows platforms. On Windows it sets special terminal modes that enable VT100 emulation as well as setting the same modes that term.MakeRaw sets. nolint:revive
(fd uintptr)
| 11 | // |
| 12 | //nolint:revive |
| 13 | func MakeInputRaw(fd uintptr) (*TerminalState, error) { |
| 14 | return makeInputRaw(fd) |
| 15 | } |
| 16 | |
| 17 | // MakeOutputRaw does nothing on non-Windows platforms. On Windows it sets |
| 18 | // special terminal modes that enable VT100 emulation as well as setting the |
no test coverage detected