Handle alt+<arrow key> on libvte derived terminals
alt+up can generate either \033\033[A
on rxvt and derivative terminals or \033[1;3A
on vte based terminal such as gnome-terminal and termite. The later isn't handle by termion as far as I could test.
Numbered escape code seems to be handled in event.rs but only M
and ~
not A
B
C
or D
.
Edited by Paul Fariello