-
Notifications
You must be signed in to change notification settings - Fork 9
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 doesn't appear to prove all results #157
Comments
This was annoying me as well, so I found a fix.. Change case 'notice':
this.project.noticeOut.clear();
this.project.noticeOut.show(true);
this.project.noticeOut.append(psm.prettyTextToString(params.message));
return; To case 'notice':
this.project.noticeOut.show(true);
this.project.noticeOut.append(psm.prettyTextToString(params.message));
this.project.noticeOut.append("\n");
return; In CoqDocument.ts I'd submit a PR but I'm not sure if this is being actively maintained anymore. |
BelegCuthalion
added a commit
to BelegCuthalion/vscoq
that referenced
this issue
May 29, 2019
as proposed in siegebell#157 (comment) by @Carotti
maximedenes
pushed a commit
to maximedenes/vscoq
that referenced
this issue
Jul 11, 2019
as proposed in siegebell/vscoq#157 (comment) by @Carotti
Blaisorblade
pushed a commit
to Blaisorblade/siegebell-vscoq
that referenced
this issue
Sep 20, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I only see one result when using
Search
, for any signature.The text was updated successfully, but these errors were encountered: