The tab completion is not working under Mac OS X. This is because it uses libedit, not readline. A solution would be to change code to something like:
if 'libedit' in readline.doc:
readline.parse_and_bind("bind ^I rl_complete")
else:
readline.parse_and_bind(""\C-tab": complete")
Note however that ^I represent TAB, not ALT-TAB.
The tab completion is not working under Mac OS X. This is because it uses libedit, not readline. A solution would be to change code to something like:
if 'libedit' in readline.doc:
readline.parse_and_bind("bind ^I rl_complete")
else:
readline.parse_and_bind(""\C-tab": complete")
Note however that ^I represent TAB, not ALT-TAB.