Files
phishingclub/backend/vendor/github.com/charmbracelet/x/ansi/reset.go
T
2025-09-15 19:41:59 +02:00

12 lines
225 B
Go

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
)