Skip to content

Shell Auto-Completion / Search feature #48

Open
@sheharyarn

Description

@sheharyarn

When I do

% joe ls

it just prints a blob of all possible joe .gitignore files. _It's not very readable_. If it had auto-completion, we could press tab midway and it would list relevant options for selection:

% joe vi<tab press>
vim          virtualenv          visualstudio

This makes it easier for the user to go through possible options without going insane reading a huge list of names separated by a comma. Or another option would be to create a search feature, so the user can search for relevant options:

% joe search vi
labview
vim
virtualenv
visualstudio

Right now, I'm doing this to filter the list:

% joe ls | awk '{split($0,a,", "); for (var in a) print a[var]}' | grep -i vi
labview
vim
virtualenv
visualstudio

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions