about summary refs log tree commit diff stats
path: root/hanoi.tlv
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-12-03 18:38:17 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-12-03 18:38:17 -0800
commit138282549e5cc98b2bb69177dfd16b99eafba085 (patch)
tree8a2afba3894b7a6235115761128802a26e2668c7 /hanoi.tlv
parentd3a12fb7f13118334c9be628c45599a6ef31d5dc (diff)
downloadteliva-138282549e5cc98b2bb69177dfd16b99eafba085.tar.gz
experimenting with different keys
On a Thinkpad X13, the `delete` key emits `^[[3~` outside of Teliva.
Within Teliva, ncurses converts it to character code 330 (0x14a), which
it fails to recognize as KEY_BACKSPACE. Why?

My backspace is converted to character code 263, which ncurses does
recognize as KEY_BACKSPACE.

ctrl-h is character code 8.

Both 330 and 263 are valid Unicode code points, which feels really ugly
and ambiguous.
Diffstat (limited to 'hanoi.tlv')
0 files changed, 0 insertions, 0 deletions
ref='#n85'>85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
s='alt'>
61de0a4d ^



1
2
3
4
5
6
7
8
9