# Control+right
"\eOc": forward-word
# Control+left
"\eOd": backward-word
Notice those are O's (the letter) not 0's (zeroes).
You may need to have this in your .bashrc
export INPUTRC=$HOME/.inputrc
Software, web, and programming tips: C++, Java, C, Linux, Windows, Cygwin, Firefox, Vim, WWW, RSS
# Control+right
"\eOc": forward-word
# Control+left
"\eOd": backward-word
export INPUTRC=$HOME/.inputrc
@echo off
C:
chdir C:\cygwin\bin
rxvt -e bash --login -i
.Xdefaults
rxvt*foreground:whiteOther rxvt options can be found here.
rxvt*background:black
rxvt*font: Lucida Console-14
rxvt*scrollBar_right: true
~/.inputrc
# Home Key
"\e[7~":beginning-of-line
# End Key
"\e[8~":end-of-line
# Delete Key
"\e[3~":delete-char
# Insert Key
"\e[2~":paste-from-clipboard
~/.bashrc
export INPUTRC=$HOME/.inputrc