-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
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
Feature suggestion: include module names in search on package pages #133
Comments
Interesting - this doesn't come up for many core modules because they define a function or type that's their name. It doesn't come up for many libraries because few have more than 3-4 modules. But I think this is a reasonable thing to expect, and it shouldn't be too hard for me to add in the next few days to a week. I'll just have to make sure I don't duplicate module names. Also I think it should only be the module name (plus anything in the module that matches itself, but those would already cause the module to be present). |
This is a one line change and I'll get Evan's attention on Monday. |
Concerning this, which I've thought a bit about now:
I'd actually want to see all the subentries of And I'd even go a bit further. Let's say I have seen |
Should work now. I think this was in the last version, but got dropped in the update. |
Continued in #139. I think the behavior concerning subentries should be different. I implemented what I think it should be like over there. |
When I'm on http://package.elm-lang.org/packages/elm-lang/core/3.0.0/ and start typing "rand.." into the search box, I would expect that the
Random
module link presents itself for me to select. But it doesn't. I think it would be better if it did. One could still debate whether it should just appear as a single entry, or with all subentries for types and values insideRandom
. (After all, "rand..." matches all things likeRandom.bool
,Random.int
, ...)@mgold, I know you have been working on the search functionality here recently. What do you think about the above?
The text was updated successfully, but these errors were encountered: