I have the following Bash alias which doesn't take any arguments.
alias b='cd ..'
Typing b<space> and then pressing <tab> brings up completion results for any paths in the current directory. How can I make it so that pressing <tab> does not trigger autocompletion of any kind? I have already tried complete -r b which didn't help.
b<space><tab>? Also, can you clarify if you want to disable autocompletion entirely, or just for commands starting with the letter 'b'?