terminfo 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #------------------------------------------------------------------------------
  2. # $File: terminfo,v 1.9 2017/04/28 16:28:58 christos Exp $
  3. # terminfo: file(1) magic for terminfo
  4. #
  5. # URL: http://invisible-island.net/ncurses/man/term.5.html
  6. # URL: http://invisible-island.net/ncurses/man/scr_dump.5.html
  7. #
  8. # Workaround for Targa image type by Joerg Jenderek
  9. # GRR: line below too general as it catches also
  10. # Targa image type 1 with 26 long identification field
  11. # and HELP.DSK
  12. 0 string \032\001
  13. # 5th character of terminal name list, but not Targa image pixel size (15 16 24 32)
  14. >16 ubyte >32
  15. # namelist, if more than 1 separated by "|" like "st|stterm| simpleterm 0.4.1"
  16. >>12 regex \^[a-zA-Z0-9][a-zA-Z0-9.][^|]* Compiled terminfo entry "%-s"
  17. !:mime application/x-terminfo
  18. # no extension
  19. #!:ext
  20. #
  21. # While the compiled terminfo uses little-endian format irregardless of
  22. # platform, SystemV screen dumps do not. They came later, and that detail was
  23. # overlooked.
  24. #
  25. # AIX and HPUX use the SVr4 big-endian format
  26. # Solaris uses the SVr3 formats (sparc and x86 differ endian-ness)
  27. 0 beshort 0433 SVr2 curses screen image, big-endian
  28. 0 beshort 0434 SVr3 curses screen image, big-endian
  29. 0 beshort 0435 SVr4 curses screen image, big-endian
  30. #
  31. 0 leshort 0433 SVr2 curses screen image, little-endian
  32. 0 leshort 0434 SVr3 curses screen image, little-endian
  33. 0 leshort 0435 SVr4 curses screen image, little-endian
  34. #
  35. # Rather than SVr4, Solaris "xcurses" writes this header:
  36. 0 regex \^MAX=[0-9]+,[0-9]+$
  37. >1 regex \^BEG=[0-9]+,[0-9]+$
  38. >2 regex \^SCROLL=[0-9]+,[0-9]+$
  39. >3 regex \^VMIN=[0-9]+$
  40. >4 regex \^VTIME=[0-9]+$
  41. >5 regex \^FLAGS=0x[[:xdigit:]]+$
  42. >6 regex \^FG=[0-9],[0-9]+$
  43. >7 regex \^BG=[0-9]+,[0-9]+, Solaris xcurses screen image
  44. #
  45. # ncurses5 (and before) did not use a magic number, making screen dumps "data".
  46. # ncurses6 (2015) uses this format, ignoring byte-order
  47. 0 string \210\210\210\210ncurses ncurses6 screen image
  48. #
  49. # PDCurses added this in 2005
  50. 0 string PDC\001 PDCurses screen image