mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			482 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			482 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Generated automatically.  DO NOT HAND-EDIT.
 | 
						|
 | 
						|
package terminfo
 | 
						|
 | 
						|
func init() {
 | 
						|
	// hazeltine 1500
 | 
						|
	AddTerminfo(&Terminfo{
 | 
						|
		Name:        "hz1500",
 | 
						|
		Columns:     80,
 | 
						|
		Lines:       24,
 | 
						|
		Bell:        "\a",
 | 
						|
		Clear:       "~\x1c",
 | 
						|
		PadChar:     "\x00",
 | 
						|
		SetCursor:   "~\x11%p2%p2%?%{30}%>%t%' '%+%;%'`'%+%c%p1%'`'%+%c",
 | 
						|
		CursorBack1: "\b",
 | 
						|
		CursorUp1:   "~\f",
 | 
						|
		KeyUp:       "~\f",
 | 
						|
		KeyDown:     "\n",
 | 
						|
		KeyRight:    "\x10",
 | 
						|
		KeyLeft:     "\b",
 | 
						|
		KeyHome:     "~\x12",
 | 
						|
	})
 | 
						|
}
 |