Skip to content
Discussion options

You must be logged in to vote

This is a known limitation of GitHub's search, not something you're doing wrong. The search indexer tokenizes on # (since #123 normally means "reference issue/PR 123"), so it effectively treats # as noise rather than a literal searchable character. That's why quoting ("##1") and backslash-escaping don't work as expected — GitHub's search isn't a literal substring/grep search, so there's currently no supported syntax to force an exact match on symbol sequences like ##1.

A couple of workarounds until/if this gets addressed:

1. Pull issues via the API/CLI and grep locally — this is the most reliable option for exact matching:

bash gh issue list -R verilator/verilator --search "1" --state al…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@kaddkaka
Comment options

Answer selected by kaddkaka
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug GitHub or a GitHub feature is not working as intended Issues Repository issues let you track features, problems, and more alongside your code Welcome 🎉 Used to greet and highlight first-time discussion participants. Welcome to the community! source:ui Discussions created via Community GitHub templates
2 participants