You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
When I do
it just prints a blob of all possible joe
.gitignore
files. _It's not very readable_. If it had auto-completion, we could presstab
midway and it would list relevant options for selection: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:Right now, I'm doing this to filter the list:
The text was updated successfully, but these errors were encountered: