forked from charmbracelet/bubbletea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxterm.go
88 lines (75 loc) · 2.69 KB
/
xterm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package tea
import (
"github.com/charmbracelet/x/ansi"
)
// setModifyOtherKeysMsg is a message to set XTerm modifyOtherKeys mode.
type setModifyOtherKeysMsg int
// EnableXtermModifyOtherKeys is a command to enable XTerm modifyOtherKeys mode.
//
// The mode can be on of the following:
//
// 1: Report ambiguous keys as escape codes
// 2: Report ambiguous keys as escape codes including modified keys like Alt-<key>
// and Meta-<key>
//
// See https://invisible-island.net/xterm/manpage/xterm.html#VT100-Widget-Resources:modifyOtherKeys
func enableModifyOtherKeys(mode int) Cmd { //nolint:unused
return func() Msg {
return setModifyOtherKeysMsg(mode)
}
}
// disableModifyOtherKeys is a command to disable XTerm modifyOtherKeys mode.
func disableModifyOtherKeys() Msg { //nolint:unused
return setModifyOtherKeysMsg(0)
}
func parseXTermModifyOtherKeys(csi *ansi.CsiSequence) Msg {
// XTerm modify other keys starts with ESC [ 27 ; <modifier> ; <code> ~
mod := KeyMod(csi.Param(1) - 1)
r := rune(csi.Param(2))
switch r {
case ansi.BS:
return KeyPressMsg{Mod: mod, Type: KeyBackspace}
case ansi.HT:
return KeyPressMsg{Mod: mod, Type: KeyTab}
case ansi.CR:
return KeyPressMsg{Mod: mod, Type: KeyEnter}
case ansi.ESC:
return KeyPressMsg{Mod: mod, Type: KeyEscape}
case ansi.DEL:
return KeyPressMsg{Mod: mod, Type: KeyBackspace}
}
// CSI 27 ; <modifier> ; <code> ~ keys defined in XTerm modifyOtherKeys
return KeyPressMsg{
Mod: mod,
Runes: []rune{r},
}
}
// modifyOtherKeys is an internal message that queries the terminal for its
// modifyOtherKeys mode.
type modifyOtherKeys struct{}
// _ModifyOtherKeys is a command that queries the terminal for its
// modifyOtherKeys mode.
func _ModifyOtherKeys() Msg { //nolint:unused
return modifyOtherKeys{}
}
// modifyOtherKeysMsg is a message that represents XTerm modifyOtherKeys
// report. Querying the terminal for the modifyOtherKeys mode will return a
// modifyOtherKeysMsg message with the current mode set.
//
// 0: disable
// 1: enable mode 1
// 2: enable mode 2
//
// See: https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Functions-using-CSI-_-ordered-by-the-final-character_s_
// See: https://invisible-island.net/xterm/manpage/xterm.html#VT100-Widget-Resources:modifyOtherKeys
type modifyOtherKeysMsg uint8
// TerminalVersionMsg is a message that represents the terminal version.
type TerminalVersionMsg string
// terminalVersion is an internal message that queries the terminal for its
// version using XTVERSION.
type terminalVersion struct{}
// TerminalVersion is a command that queries the terminal for its version using
// XTVERSION. Note that some terminals may not support this command.
func TerminalVersion() Msg {
return terminalVersion{}
}