Good call. I haven’t seen a full definitive list. If the help vault has been updated, I’m still on an old one. This is everything I could find. Does anyone know any others?
Edit, All of them work for me, except I can’t seem to get the file: operator to work for me. Anyone else?
-
file: will perform the following subquery on the file name. For example: file:".jpg".
-
path: will perform the following subquery on the file path, absolute from the root. For example: path:Resources Apples will only search for Apples within a folder called Resources .
-
content: will search the content of the file only.
-
match-case: and ignore-case: will override the case sensitive match logic for the following subquery.
-
"Quoted strings" can be used to perform full word match. "test" will not match the word testing . Use backslash \" to escape double quotes and \\ to escape backslash.
AND is not a boolean operator. Adding a space between search terms already acts as AND.
- Regular expressions (regex) can now be used in search. Use forward slash to denote a regular expression. For example:
/[a-z]{3}/ .
- Boolean operations can now be used. Use
OR to match one or another. Use - to negate a query. The space character is used for boolean “and”.
- Parenthesis can be used to group boolean operations. For example
(a OR b) (c OR d) .