aboutsummaryrefslogtreecommitdiff
path: root/vendor/maunium.net/go/tcell/terminfo/term_vt52.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/maunium.net/go/tcell/terminfo/term_vt52.go')
-rw-r--r--vendor/maunium.net/go/tcell/terminfo/term_vt52.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/maunium.net/go/tcell/terminfo/term_vt52.go b/vendor/maunium.net/go/tcell/terminfo/term_vt52.go
new file mode 100644
index 0000000..993a77a
--- /dev/null
+++ b/vendor/maunium.net/go/tcell/terminfo/term_vt52.go
@@ -0,0 +1,28 @@
+// Generated automatically. DO NOT HAND-EDIT.
+
+package terminfo
+
+func init() {
+ // dec vt52
+ AddTerminfo(&Terminfo{
+ Name: "vt52",
+ Columns: 80,
+ Lines: 24,
+ Bell: "\a",
+ Clear: "\x1bH\x1bJ",
+ Italic: "\x1b[3m",
+ Strikethrough: "\x1b[9m",
+ PadChar: "\x00",
+ AltChars: "+h.k0affggolpnqprrss",
+ EnterAcs: "\x1bF",
+ ExitAcs: "\x1bG",
+ SetCursor: "\x1bY%p1%' '%+%c%p2%' '%+%c",
+ CursorBack1: "\x1bD",
+ CursorUp1: "\x1bA",
+ KeyUp: "\x1bA",
+ KeyDown: "\x1bB",
+ KeyRight: "\x1bC",
+ KeyLeft: "\x1bD",
+ KeyBackspace: "\b",
+ })
+}