reset.go 225 B

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