I'm trying to use GitHub's code search to search for some lines of code containing characters like =
, +
, etc.
I understand from https://help.github.com/articles/searching-code/#considerations-for-code-search that these characters are wildcards and have to be escaped, otherwise they will be ignored.
Here's an example: "if \(done is True\)", and another: "if (done is True)".
Both return the same "your query contains a character that is ignored"
warning on the right side of the search bar. My escaping doesn't seem to be doing anything and the results I get are with the characters ignored.