Bash autocomplete like zsh

I'm using bash, but I'd like to have zsh style autocomplete (you hit tab and it tabs through the possibilities), rather than what bash seems to do, which is display a list of possibilities but not choose anything until I type some more to disambiguate. How can I get zsh type behavior in bash?

Searching for a solution has turned up lots of answers to other questions, so I'm hoping I can get a simple answer here (i.e. what to paste into my .bashrc).

(And to answer the obvious question, I need to use bash here because I just joined a team and they do some stuff to set up bash to make the environment easier to work in. I can probably eventually make sure I have it working the same way in zsh, but for now it's easier if I use bash and just get it behaving more like zsh during interactive use.)


Solution 1:

I use

bind 'TAB:menu-complete'

to achieve it

Solution 2:

To get first completion and a listing you can add the following to bashrc

bind 'set show-all-if-ambiguous on'
bind 'TAB:menu-complete'

show-all-if-ambiguous: This alters the default behavior of the completion functions. If set to ‘on’, words which have more than one possible completion cause the matches to be listed immediately instead of ringing the bell. The default value is ‘off’.

see Bash Manual for more information.

Edit:

This doesn't make bash work exactly as zsh tho. Zsh will complete up until the next ambiguous match. Bash will just cycle through all matches.

e.g.

$ ls ~/.ba<tab> .bashrc .bash_history .bash_profile

  • zsh: will complete up until ~/.bash and present a list of matches which handily enables you to append _ and hit <tab> again.
  • bash: will just cycle through all ~/.ba* matches.

Solution 3:

In Bash: Zsh like autocomplete can be achieved with Ble.sh.

# Quick TRIAL without installation
# requires the commands git, make (GNU make), and gawk

git clone --recursive https://github.com/akinomyoga/ble.sh.git
make -C ble.sh
source ble.sh/out/ble.sh

Here is a quick demo of Bash with blesh. For more details see: README of Ble.sh

enter image description here