0
It looks like I cannot use Ctrl+right_arrow to forward word on my c shell. After some effort I found out that the all the key bindings can be found with bindkey
command and I get these:
"\306" -> forward-word
"\316" -> history-search-forward
"\346" -> forward-word
"\356" -> history-search-forward
"^[[C" -> forward-char
"^[OC" -> forward-char
"^[F" -> forward-word
Any idea what these all mean? It would be AWESOME if you can point me to where I can learn what these characters mean :)
Thanks!
My guess is that
\3xx
is Meta+\0xx
, so\346
is Meta-F. – Barmar – 2013-02-22T16:05:06.223and you guess is based on what? – None – 2013-02-22T16:19:34.293
1Based on the assumption that the default bindings are Emacs-like, and 046 is ASCII F. – Barmar – 2013-02-22T16:29:20.173