blob: c1b89ea493f61fdc97b49b604ca108246117ba0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package ansi
// ResetInitialState (RIS) resets the terminal to its initial state.
//
// ESC c
//
// See: https://vt100.net/docs/vt510-rm/RIS.html
const (
ResetInitialState = "\x1bc"
RIS = ResetInitialState
)
|