Skip to content
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

Open
varkor opened this issue Mar 13, 2018 · 1 comment
Open

Search doesn't appear to prove all results #157

varkor opened this issue Mar 13, 2018 · 1 comment

Comments

@varkor
Copy link

varkor commented Mar 13, 2018

I only see one result when using Search, for any signature.

@Carotti
Copy link

Carotti commented Sep 19, 2018

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
maximedenes pushed a commit to maximedenes/vscoq that referenced this issue Jul 11, 2019
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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants