Hi,
I'm having trouble finding a keyboard shortcut which jumps to the beginning of the buffer.
I've tried:
Shift + Fn + Up Arrow -> prints 2~
Cmd + Up Arrow -> same as up arrow, shows last command
Cmd + Fn + Left Arrow -> nothing happens
Can you help me debug this? Why is this happening and what should be the right keyboard shortcut for this to work?
I'm using this in .inputrc, do you think it might be related?
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": history-search-backward
"\e[6~": history-search-forward
"\e[A": history-search-backward
"\e[B": history-search-forward
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word
"\e[Z": menu-complete
set match-hidden-files on
set show-all-if-ambiguous on
set completion-ignore-case on
Zsolt