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](https://github.com/XAMPPRocky/octocrab/blob/main/examples/search_issues.rs) 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
Currently the LSP will generate an
/issues/URL when completing a PR.This is because we're using the
issuesAPI.https://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L260-L267
Maybe we should use search and filter on
is:issueandis:pr, then decorate the cached object inhttps://github.com/AlexanderBrevig/github-lsp/blob/e5b99c94f233c93fec3aed1936e81218fc816c57/src/backend.rs#L20