-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
search: Don't omit version info when package name is matched #3055
Conversation
CC @dtzWill |
Anything holding this merge back? Just bumped into this issue too. |
Me too! I think that merging this could avoid a lot of confusion for beginners. |
I marked this as stale due to inactivity. → More info |
I still want this. Didn’t realize there was a merge conflict though. I’ll have to look at that when I get a chance. |
I marked this as stale due to inactivity. → More info |
I'm not really sure what the state of Looking at the code right now, it looks like the version info is indeed fixed, in that it now adds Lines 134 to 142 in 6678e98
It does appear that "don't omit version info" is indeed fixed in master (but not in 2.3-maintenance), but it's been traded for other breakage. Either way I'm going to close out this issue as the other breakage is orthogonal to the version. |
The
name
variable already includes highlighting in addition to the version info, so with the old code it would print the version info only ifnameMatch
is empty.Fixes #2778.