Files
demus 9b420c0e31
Build and provide rpm of demus profiles / rpmbuild (release) Failing after 39s
Don't set readline variables in non-interactive shells
Spews noise into journald
Also F40 is deprecated
2025-02-14 22:22:02 +01:00

12 lines
358 B
Bash

if [[ $- = *i* ]]; then
# Always ignore case in bash completion
bind "set completion-ignore-case On"
bind "set completion-map-case On"
# Informative completion
bind "set colored-completion-prefix On"
bind "set colored-stats On"
bind "set visible-stats On"
# Immediatly list possible completions
bind "set show-all-if-ambiguous On"
fi