ansible-role--bashrc/files/bashrc.d/55-dev-bash.sh

15 lines
255 B
Bash
Raw Normal View History

2021-12-31 12:03:38 +00:00
# Change tab behaviour
# - inline completion (menu-complete)
# - of simple suggestion (complete) => default
# bind TAB:menu-complete
case "${-:-}" in
*i*) # This shell is interactive
bind TAB:complete
;;
*) # This shell is not interactive
;;
esac