Skip to content

Instantly share code, notes, and snippets.

@itspriddle
Created March 31, 2009 08:49
Show Gist options
  • Select an option

  • Save itspriddle/88109 to your computer and use it in GitHub Desktop.

Select an option

Save itspriddle/88109 to your computer and use it in GitHub Desktop.
~/.input.rc
# allow the use of the Home/End keys
"\e[1~": beginning-of-line
"\e[4~": end-of-line
# allow the use of the Delete/Insert keys
"\e[3~": delete-char
"\e[2~": quoted-insert
# allow ctrl/alt + arrow keys to work
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word
# Case insensitive tab completion
set completion-ignore-case on
# Shows all matches
set show-all-if-ambiguous on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment