summaryrefslogtreecommitdiffstats
path: root/src/tui/light.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/tui/light.go')
-rw-r--r--src/tui/light.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tui/light.go b/src/tui/light.go
index 3f6985f5..7819050c 100644
--- a/src/tui/light.go
+++ b/src/tui/light.go
@@ -344,9 +344,10 @@ func (r *LightRenderer) escSequence(sz *int) Event {
return Event{ESC, 0, nil}
}
*sz = 2
+ if r.buffer[1] >= 1 && r.buffer[1] <= 'z'-'a'+1 {
+ return Event{int(CtrlAltA + r.buffer[1] - 1), 0, nil}
+ }
switch r.buffer[1] {
- case 13:
- return Event{AltEnter, 0, nil}
case 32:
return Event{AltSpace, 0, nil}
case 47: