nt

A sensible note-taking program
git clone git://git.laack.co/nt.git
Log | Files | Refs | README

term.go (2107B)


      1 // Generated automatically.  DO NOT HAND-EDIT.
      2 
      3 package xfce
      4 
      5 import "github.com/gdamore/tcell/v2/terminfo"
      6 
      7 func init() {
      8 
      9 	// Xfce Terminal
     10 	terminfo.AddTerminfo(&terminfo.Terminfo{
     11 		Name:              "xfce",
     12 		Columns:           80,
     13 		Lines:             24,
     14 		Colors:            8,
     15 		Bell:              "\a",
     16 		Clear:             "\x1b[H\x1b[2J",
     17 		EnterCA:           "\x1b7\x1b[?47h",
     18 		ExitCA:            "\x1b[2J\x1b[?47l\x1b8",
     19 		ShowCursor:        "\x1b[?25h",
     20 		HideCursor:        "\x1b[?25l",
     21 		AttrOff:           "\x1b[0m\x0f",
     22 		Underline:         "\x1b[4m",
     23 		Bold:              "\x1b[1m",
     24 		Reverse:           "\x1b[7m",
     25 		EnterKeypad:       "\x1b[?1h\x1b=",
     26 		ExitKeypad:        "\x1b[?1l\x1b>",
     27 		SetFg:             "\x1b[3%p1%dm",
     28 		SetBg:             "\x1b[4%p1%dm",
     29 		SetFgBg:           "\x1b[3%p1%d;4%p2%dm",
     30 		ResetFgBg:         "\x1b[39;49m",
     31 		PadChar:           "\x00",
     32 		AltChars:          "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~",
     33 		EnterAcs:          "\x0e",
     34 		ExitAcs:           "\x0f",
     35 		EnableAcs:         "\x1b)0",
     36 		EnableAutoMargin:  "\x1b[?7h",
     37 		DisableAutoMargin: "\x1b[?7l",
     38 		Mouse:             "\x1b[M",
     39 		SetCursor:         "\x1b[%i%p1%d;%p2%dH",
     40 		CursorBack1:       "\b",
     41 		CursorUp1:         "\x1b[A",
     42 		KeyUp:             "\x1bOA",
     43 		KeyDown:           "\x1bOB",
     44 		KeyRight:          "\x1bOC",
     45 		KeyLeft:           "\x1bOD",
     46 		KeyInsert:         "\x1b[2~",
     47 		KeyDelete:         "\x1b[3~",
     48 		KeyBackspace:      "\x7f",
     49 		KeyHome:           "\x1bOH",
     50 		KeyEnd:            "\x1bOF",
     51 		KeyPgUp:           "\x1b[5~",
     52 		KeyPgDn:           "\x1b[6~",
     53 		KeyF1:             "\x1bOP",
     54 		KeyF2:             "\x1bOQ",
     55 		KeyF3:             "\x1bOR",
     56 		KeyF4:             "\x1bOS",
     57 		KeyF5:             "\x1b[15~",
     58 		KeyF6:             "\x1b[17~",
     59 		KeyF7:             "\x1b[18~",
     60 		KeyF8:             "\x1b[19~",
     61 		KeyF9:             "\x1b[20~",
     62 		KeyF10:            "\x1b[21~",
     63 		KeyF11:            "\x1b[23~",
     64 		KeyF12:            "\x1b[24~",
     65 		KeyBacktab:        "\x1b[Z",
     66 		Modifiers:         1,
     67 		AutoMargin:        true,
     68 		XTermLike:         true,
     69 	})
     70 }