sequences.go 346 B

123456789101112131415161718
  1. package terminal
  2. const (
  3. KeyArrowLeft = '\x02'
  4. KeyArrowRight = '\x06'
  5. KeyArrowUp = '\x10'
  6. KeyArrowDown = '\x0e'
  7. KeySpace = ' '
  8. KeyEnter = '\r'
  9. KeyBackspace = '\b'
  10. KeyDelete = '\x7f'
  11. KeyInterrupt = '\x03'
  12. KeyEndTransmission = '\x04'
  13. )
  14. func soundBell() {
  15. Print("\a")
  16. }