reset.go

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