Created
July 4, 2021 18:17
-
-
Save krnd/fc35c84654a4788c63e8a8cef2b2ecb0 to your computer and use it in GitHub Desktop.
bash-inputrc
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
#!/bin/bash | |
# .inputrc | |
# | |
# AUTHOR | |
# krnd | |
# | |
# VERSION | |
# 1.0 | |
# | |
# SEE ALSO | |
# https://tiswww.case.edu/php/chet/readline/readline.html | |
# https://gist.github.com/krnd | |
# | |
# When listing completions, Readline displays the common prefix of the set of | |
# possible completions using a different color. | |
set colored-completion-prefix on | |
# Readline displays possible completions using different colors to indicate | |
# their file type. | |
set colored-stats on | |
# Readline performs filename matching and completion in a case-insensitive | |
# fashion. | |
set completion-ignore-case on | |
# Readline treats hyphens (`-') and underscores (`_') as equivalent when | |
# performing case-insensitive filename matching and completion. | |
set completion-map-case on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment