Users may be confused when a query like content:"\Path\With\Backslash" gives an error saying "unrecognized escape sequence". Since \ is reserved for escaping in quoted strings, \ must itself be escaped. This is something we can add diagnostics for (yellow squiggles) in the frontend.
Users may be confused when a query like
content:"\Path\With\Backslash"
gives an error saying "unrecognized escape sequence". Since\
is reserved for escaping in quoted strings,\
must itself be escaped. This is something we can add diagnostics for (yellow squiggles) in the frontend.