gemini-browser

A text-based gemini browser
git clone git://git.laack.co/gemini-browser.git
Log | Files | Refs | README

term.go (2237B)


      1 // Generated automatically.  DO NOT HAND-EDIT.
      2 
      3 package linux
      4 
      5 import "github.com/gdamore/tcell/v2/terminfo"
      6 
      7 func init() {
      8 
      9 	// Linux console
     10 	terminfo.AddTerminfo(&terminfo.Terminfo{
     11 		Name:              "linux",
     12 		Colors:            8,
     13 		Bell:              "\a",
     14 		Clear:             "\x1b[H\x1b[J",
     15 		ShowCursor:        "\x1b[?25h\x1b[?0c",
     16 		HideCursor:        "\x1b[?25l\x1b[?1c",
     17 		AttrOff:           "\x1b[m\x0f",
     18 		Underline:         "\x1b[4m",
     19 		Bold:              "\x1b[1m",
     20 		Dim:               "\x1b[2m",
     21 		Blink:             "\x1b[5m",
     22 		Reverse:           "\x1b[7m",
     23 		SetFg:             "\x1b[3%p1%dm",
     24 		SetBg:             "\x1b[4%p1%dm",
     25 		SetFgBg:           "\x1b[3%p1%d;4%p2%dm",
     26 		ResetFgBg:         "\x1b[39;49m",
     27 		PadChar:           "\x00",
     28 		AltChars:          "++,,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~",
     29 		EnterAcs:          "\x0e",
     30 		ExitAcs:           "\x0f",
     31 		EnableAcs:         "\x1b)0",
     32 		EnableAutoMargin:  "\x1b[?7h",
     33 		DisableAutoMargin: "\x1b[?7l",
     34 		Mouse:             "\x1b[M",
     35 		SetCursor:         "\x1b[%i%p1%d;%p2%dH",
     36 		CursorBack1:       "\b",
     37 		CursorUp1:         "\x1b[A",
     38 		KeyUp:             "\x1b[A",
     39 		KeyDown:           "\x1b[B",
     40 		KeyRight:          "\x1b[C",
     41 		KeyLeft:           "\x1b[D",
     42 		KeyInsert:         "\x1b[2~",
     43 		KeyDelete:         "\x1b[3~",
     44 		KeyBackspace:      "\x7f",
     45 		KeyHome:           "\x1b[1~",
     46 		KeyEnd:            "\x1b[4~",
     47 		KeyPgUp:           "\x1b[5~",
     48 		KeyPgDn:           "\x1b[6~",
     49 		KeyF1:             "\x1b[[A",
     50 		KeyF2:             "\x1b[[B",
     51 		KeyF3:             "\x1b[[C",
     52 		KeyF4:             "\x1b[[D",
     53 		KeyF5:             "\x1b[[E",
     54 		KeyF6:             "\x1b[17~",
     55 		KeyF7:             "\x1b[18~",
     56 		KeyF8:             "\x1b[19~",
     57 		KeyF9:             "\x1b[20~",
     58 		KeyF10:            "\x1b[21~",
     59 		KeyF11:            "\x1b[23~",
     60 		KeyF12:            "\x1b[24~",
     61 		KeyF13:            "\x1b[25~",
     62 		KeyF14:            "\x1b[26~",
     63 		KeyF15:            "\x1b[28~",
     64 		KeyF16:            "\x1b[29~",
     65 		KeyF17:            "\x1b[31~",
     66 		KeyF18:            "\x1b[32~",
     67 		KeyF19:            "\x1b[33~",
     68 		KeyF20:            "\x1b[34~",
     69 		KeyBacktab:        "\x1b\t",
     70 		AutoMargin:        true,
     71 		InsertChar:        "\x1b[@",
     72 	})
     73 }