I am trying to remap cursor moves and such in my terminal, using Urxvt "keysym" resource. For example, this shortcut (in my .Xresources
) does previous-word :
*keysym.Control-h: \033[1;5D
I didn't find a complete (working) list of sequences like this 1;5D
. I know a few others (Home, End...) but need some others (kill next word, kill last word, cancel last action...). The quest for this list is not new, but the answers aren't what they seem to be (not working, maybe not the \033[
type ?). I spent hours on Google, Wikipedia, manual pages (urxvt, readline, ascii, xterm, bash...), it looks like some kind of cruel initiation.
Where can I find this reference ?