Last active
December 14, 2020 21:02
-
-
Save cameronbourke/b8d3a84e710b402c281ce1580f03b5b4 to your computer and use it in GitHub Desktop.
Simple 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
# Controls what happens when Readline wants to ring the terminal bell. | |
set bell-style none | |
# When pressing up or down arrows, | |
# show only history entries that match what was already typed. | |
"\ep":history-search-backward | |
"\en":history-search-forward | |
"\C-x\C-r": re-read-init-file | |
# Turn on case insensitivity for tab-completion. | |
# Ex.: type "doc<tab>" to search for "Documents" | |
set completion-ignore-case on | |
# Readline will try and match files whose names | |
# begin with a ‘.’ (hidden files) when performing filename completion. | |
set match-hidden-files on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment