Filtering on @tag's value

Let’s assume I have the following tag on my outline:

@tag(word1 and word2)

Clicking on the @tag’s associated value triggers the search:

@tag = word1 and word2

The searchbar shows an error for this search because “and” is a keyword.

Therefore I would like to propose modifying the search behavior, so that the value will get wrapped in double quotes when searching:

@tag = "word1 and word2"

Double quotation marks inside the tag’s value should get backslash-escaped, e.g.:

@tag(word1 and "word2")

@tag = "word1 and \"word2\""