Created
March 31, 2009 08:49
-
-
Save itspriddle/88109 to your computer and use it in GitHub Desktop.
~/.input.rc
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
| # 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