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
Currently the LSP will generate an /issues/ URL when completing a PR.
/issues/
This is because we're using the issues API. https://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L260-L267
issues
Maybe we should use search and filter on is:issue and is:pr, then decorate the cached object in https://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L20
is:issue
is:pr
The text was updated successfully, but these errors were encountered:
Not marking this as bug, since it is working. GitHub rewrites the URL and points to the correct PR.
Sorry, something went wrong.
No branches or pull requests
Currently the LSP will generate an
/issues/
URL when completing a PR.This is because we're using the
issues
API.https://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L260-L267
Maybe we should use search and filter on
is:issue
andis:pr
, then decorate the cached object inhttps://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L20
The text was updated successfully, but these errors were encountered: