Created
February 11, 2020 12:04
-
-
Save mordonez/60411dfbfdda6e78b16385ac7eb494fd to your computer and use it in GitHub Desktop.
Search through your history (Bash)
This file contains 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
# This allows you to search through your history using the up and down arrows | |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
# This alters the default behavior of the completion functions. | |
# If set to ‘on’, words which have more than one possible completion | |
# cause the matches to be listed immediately instead of ringing the bell. | |
set show-all-if-ambiguous on | |
# Readline performs filename matching and completion in a case-insensitive fashion | |
set completion-ignore-case on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment