aboutsummaryrefslogtreecommitdiff
path: root/vendor/maunium.net/go/tcell/terminfo/term_hpterm.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2019-01-11 23:28:47 +0200
committerTulir Asokan <tulir@maunium.net>2019-01-11 23:28:47 +0200
commit331597b9f8a7942cbcb233a328301e4d5bf94fb0 (patch)
tree5ec624585ebf66c63549a098acb6f7421f1193a7 /vendor/maunium.net/go/tcell/terminfo/term_hpterm.go
parent2fc3378b717f40f37f3a188b68407887242d9c06 (diff)
Switch to Go modules and make other changes
Diffstat (limited to 'vendor/maunium.net/go/tcell/terminfo/term_hpterm.go')
-rw-r--r--vendor/maunium.net/go/tcell/terminfo/term_hpterm.go49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/maunium.net/go/tcell/terminfo/term_hpterm.go b/vendor/maunium.net/go/tcell/terminfo/term_hpterm.go
deleted file mode 100644
index 3e93a2f..0000000
--- a/vendor/maunium.net/go/tcell/terminfo/term_hpterm.go
+++ /dev/null
@@ -1,49 +0,0 @@
-// Generated automatically. DO NOT HAND-EDIT.
-
-package terminfo
-
-func init() {
- // hp X11 terminal emulator
- AddTerminfo(&Terminfo{
- Name: "hpterm",
- Aliases: []string{"X-hpterm"},
- Columns: 80,
- Lines: 24,
- Bell: "\a",
- Clear: "\x1b&a0y0C\x1bJ",
- AttrOff: "\x1b&d@\x0f",
- Underline: "\x1b&dD",
- Bold: "\x1b&dB",
- Italic: "\x1b[3m",
- Strikethrough: "\x1b[9m",
- Dim: "\x1b&dH",
- Reverse: "\x1b&dB",
- EnterKeypad: "\x1b&s1A",
- ExitKeypad: "\x1b&s0A",
- PadChar: "\x00",
- EnterAcs: "\x0e",
- ExitAcs: "\x0f",
- SetCursor: "\x1b&a%p1%dy%p2%dC",
- CursorBack1: "\b",
- CursorUp1: "\x1bA",
- KeyUp: "\x1bA",
- KeyDown: "\x1bB",
- KeyRight: "\x1bC",
- KeyLeft: "\x1bD",
- KeyInsert: "\x1bQ",
- KeyDelete: "\x1bP",
- KeyBackspace: "\b",
- KeyHome: "\x1bh",
- KeyPgUp: "\x1bV",
- KeyPgDn: "\x1bU",
- KeyF1: "\x1bp",
- KeyF2: "\x1bq",
- KeyF3: "\x1br",
- KeyF4: "\x1bs",
- KeyF5: "\x1bt",
- KeyF6: "\x1bu",
- KeyF7: "\x1bv",
- KeyF8: "\x1bw",
- KeyClear: "\x1bJ",
- })
-}