Skip to content

Instantly share code, notes, and snippets.

@iphoting
Created November 24, 2012 03:46
Show Gist options
  • Select an option

  • Save iphoting/4138267 to your computer and use it in GitHub Desktop.

Select an option

Save iphoting/4138267 to your computer and use it in GitHub Desktop.
My inputrc tweaks.
# Show all tab-completion.
set show-all-if-ambiguous on
# Case-insensitive match when tab-completion matching.
set completion-ignore-case on
# Don't beep on tab-completion.
set bell-style none
# Symlink completion matches have / appended.
set mark-symlinked-directories on
# Don't page completions into more.
set page-completions off
# typing the beginning of a previous command then
# PgUp/PgDw cycles trough history only for matching entries
"^[[5~": history-search-backward # Previous
"^[[6~": history-search-forward # Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment