You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quick Search now supports the exact match operator (`=`) at the beginning of your search query. This allows you to search for notes where the title or content exactly matches your search term, rather than just containing it.
6
+
7
+
## Usage
8
+
9
+
To use exact match in Quick Search:
10
+
11
+
1. Start your search query with the `=` operator
12
+
2. Follow it immediately with your search term (no space after `=`)
13
+
14
+
### Examples
15
+
16
+
-`=example` - Finds notes with title exactly "example" or content exactly "example"
17
+
-`=Project Plan` - Finds notes with title exactly "Project Plan" or content exactly "Project Plan"
18
+
-`='hello world'` - Use quotes for multi-word exact matches
19
+
20
+
### Comparison with Regular Search
21
+
22
+
| Query | Behavior |
23
+
|-------|----------|
24
+
|`example`| Finds all notes containing "example" anywhere in title or content |
25
+
|`=example`| Finds only notes where the title equals "example" or content equals "example" exactly |
26
+
27
+
## Technical Details
28
+
29
+
When you use the `=` operator:
30
+
- The search performs an exact match on note titles
31
+
- For note content, it looks for exact matches of the entire content
32
+
- Partial word matches are excluded
33
+
- The search is case-insensitive
34
+
35
+
## Limitations
36
+
37
+
- The `=` operator must be at the very beginning of the search query
38
+
- Spaces after `=` will treat it as a regular search
39
+
- Multiple `=` operators (like `==example`) are treated as regular text search
40
+
41
+
## Use Cases
42
+
43
+
This feature is particularly useful when:
44
+
- You know the exact title of a note
45
+
- You want to find notes with specific, complete content
46
+
- You need to distinguish between notes with similar but not identical titles
47
+
- You want to avoid false positives from partial matches
48
+
49
+
## Related Features
50
+
51
+
- For more complex exact matching queries, use the full [Search](Search.md) functionality
52
+
- For fuzzy matching (finding results despite typos), use the `~=` operator in the full search
53
+
- For partial matches with wildcards, use operators like `*=*`, `=*`, or `*=` in the full search
0 commit comments