Disable tab-complete in bash

This commit is contained in:
Anthony Rose 2024-09-23 16:51:28 +01:00
parent a8b415aded
commit 3cf1277f5c

View file

@ -97,6 +97,7 @@ then
bind '"\e[B": history-search-forward' bind '"\e[B": history-search-forward'
bind 'set bell-style none' bind 'set bell-style none'
bind 'set completion-ignore-case on' bind 'set completion-ignore-case on'
bind 'set disable-completion on' # Masochist mode.
bind 'set enable-bracketed-paste off' bind 'set enable-bracketed-paste off'
export BASH_ENV="$HOME/.bashrc" export BASH_ENV="$HOME/.bashrc"