Last active
January 8, 2024 07:59
-
-
Save andre487/ba933a55ca05ff1ae8fb6054146f0d5b to your computer and use it in GitHub Desktop.
Improve Bash readline behaviour when there is completion needed
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
bind 'set completion-query-items 500' | |
bind 'set page-completions Off' | |
bind 'set colored-completion-prefix On' | |
bind 'set colored-stats On' | |
bind 'set completion-ignore-case On' | |
bind 'set enable-keypad On' | |
bind 'set show-all-if-ambiguous On' | |
bind 'TAB:menu-complete' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment