We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
比如我有 "abc" 和 "tiny-abc" 两个仓库,"abc" 是常用的关键字,但是 projj find abc 始终只能搜到 "abc"。
projj find abc
const keys = Object.keys(yield this.cache.get()); let matched = keys.filter(key => key.endsWith(repo.replace(/^\/?/, '/'))); if (!matched.length) matched = keys.filter(key => key.indexOf(repo) >= 0);
我觉得搜索结果应该将所有命中的都返回,只是排序上可以有侧重。
The text was updated successfully, but these errors were encountered:
@popomore 看看
Sorry, something went wrong.
No branches or pull requests
比如我有 "abc" 和 "tiny-abc" 两个仓库,"abc" 是常用的关键字,但是
projj find abc
始终只能搜到 "abc"。我觉得搜索结果应该将所有命中的都返回,只是排序上可以有侧重。
The text was updated successfully, but these errors were encountered: