Created
November 24, 2012 03:46
-
-
Save iphoting/4138267 to your computer and use it in GitHub Desktop.
My inputrc tweaks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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