Reputation: 28470
My ~/.Xdefaults
does not contain this like
URxvt*meta8: true
and if I open Vim and hit Ctrl+v and then Alt+j, I get this
^[j
where ^[
occupies two characters but is in reality a single entity representing the escape character.
If I do put that line in my ~/.Xdefaults
, then if I hit Ctrl+vAlt+j, nothing happens; if afterwards I hit
ê
(hex code 00ea
);But it's not always like that. If after Ctrl+vAlt+j I
êA
êB
êC
êD
and I think the reason is that all of Space, y, z, Alt+j are... 1-or-2-bytes sequences, whereas all of ArrowUp, ArrowDown, ArrowRight, ArrowLeft are longer? What I mean is that I press Ctrl+v before each of them when I don't have the meta8
option enabled, I get
y
z
j
OA
OB
OC
OD
so it's a bit like Ctrl+v is waiting for just 1 or 2 bytes when meta8
is disabled, and is waiting for more when it is enabled?
Upvotes: 0
Views: 37