Skip to content

Tab completion under Mac OS X #1

@andrivet

Description

@andrivet

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions