Last active
June 8, 2017 17:54
-
-
Save suzmas/5f7d2ab05748fe4beec2e079187c4ebb to your computer and use it in GitHub Desktop.
Inputrc customization to aid in my laziness
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
# use up/down arrow keys to flip through history for specific command, or beginning of specific command | |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
# tab through completion matches if ambiguous | |
set show-all-if-ambiguous on | |
# case insensitive tab completion | |
set completion-ignore-case on | |
TAB: menu-complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment