Skip to content

Commit

Permalink
update Search, hopefully making things clearer. thoughts and prayers
Browse files Browse the repository at this point in the history
  • Loading branch information
godbout committed Jul 28, 2022
1 parent 27681b3 commit a496bd5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,20 @@ That sounds slower but it's actually way more natural. The way it works is:

E.g. you want something with `bacon`:

| search term | narrower | matches | whole typing
| term | narrower | matches | whole typing
| :---: | :---: | :---: | :---:
| `bacon` | | anything that contains "bacon" (will not match pig sorry) | `bacon`
| `bacon` | `^` | anything that starts with "bacon" | `bacon ^`
| `bacon` | `$` | anything that ends with "bacon" | `bacon $`
| `bacon` | `!` | anything that is exactly "bacon" | `bacon !`
| `the bacon` | `tab` | anything that contains "the bacon" and is a tab :)) | `the bacon tab`

The search term can also be:
1. a star (`*`) that will show all the UI elements that you can target
2. a type of UI element. Don't think too much, just type. e.g. tab, radio, checkbox, button, pop up, toggle. (You never need to type the whole... type, just part of it is enough most of the time.)
**You do NOT need to type the whole search term or narrower**. You can type `bac butt` for a bacon button. Actually even `b b` might get your target, depending on the context.
But you currently need to type your letters in order, space included. There's no fuzzy matching. It may come later, but from experience, typing letters in order is faster than _thinking_ how to fuzzy match. You don't want to think. (At least not in this context.)

The term can also be:
1. a star—`*`—that will show all the UI elements that you can target
2. a type of UI element. Don't think too much, just start typing. E.g.: tab, radio, checkbox, button, pop up, toggle, switch, etc. Again, you do not need to type the whole thing. `check`, or `ch` will probably find all the checkboxes.

## Navigate

Expand Down

0 comments on commit a496bd5

Please sign in to comment.