How do I jump to the next or previous word with CTRL + arrow keys in a console?
Emacs-style shortcuts Alt + f, Alt + b work by default with all readline-powered command line programs, like shells.
This is possible if and only if the terminal sends different escape sequences for Ctrl+Left vs Left. This is not the case by default on the Linux console (at least on my machine). You can make it so by modifying the keymap. The exact file to modify may depend on your distribution; on Debian lenny, the file to modify is /etc/console/boottime.kmap.gz
. You need lines like
control keycode 105 = F100
string F100 = "\033O5D"
control keycode 106 = F101
string F101 = "\033O5C"
You might as well choose the same escape sequences as your X terminal emulator. To find out what the control sequence is, type Ctrl+V Ctrl+Left in a shell; this inserts (on my machine) ^[O5D
where ^[
is an escape character. In the keymap file, \033
represents an escape character.
Configuring the application in the terminal to decode the escape sequence is a separate problem, .
You can set vim as your command line editor and then hit ESC and jump around vim style (forward, back, end, $, 0, etc)