Skip to content

Instantly share code, notes, and snippets.

@elizabrock
Created October 23, 2014 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elizabrock/21bf26b2bf62d36ce0db to your computer and use it in GitHub Desktop.
Save elizabrock/21bf26b2bf62d36ce0db to your computer and use it in GitHub Desktop.
My .inputrc
# this makes the "delete" key work rather than
# just entering a ~
"\e[3~": delete-char
# these allow you to use ctrl+left/right arrow keys
# to jump the cursor over words
"\e[5C": forward-word
"\e[5D": backward-word
# these allow you to start typing a command and
# use the up/down arrow to auto complete from
# commands in your history
"\e[B": history-search-forward
"\e[A": history-search-backward
# this lets you hit tab to auto-complete a file or
#
# directory name ignoring case
set completion-ignore-case On
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment