mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			430 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Generated automatically.  DO NOT HAND-EDIT.
 | 
						|
 | 
						|
package terminfo
 | 
						|
 | 
						|
func init() {
 | 
						|
	// lsi adm3a
 | 
						|
	AddTerminfo(&Terminfo{
 | 
						|
		Name:        "adm3a",
 | 
						|
		Columns:     80,
 | 
						|
		Lines:       24,
 | 
						|
		Bell:        "\a",
 | 
						|
		Clear:       "\x1a$<1/>",
 | 
						|
		PadChar:     "\x00",
 | 
						|
		SetCursor:   "\x1b=%p1%' '%+%c%p2%' '%+%c",
 | 
						|
		CursorBack1: "\b",
 | 
						|
		CursorUp1:   "\v",
 | 
						|
		KeyUp:       "\v",
 | 
						|
		KeyDown:     "\n",
 | 
						|
		KeyRight:    "\f",
 | 
						|
		KeyLeft:     "\b",
 | 
						|
	})
 | 
						|
}
 |