Pins supports SQLite Full-Text Search syntax to filter your bookmarks. This is only enabled when you use the Query scope to search. Other scopes (Any, Title, Desc., URL, Tag) assumes you want to look for bookmarks with any of the entered terms.
- Enclose more than one words in double quotes (
"
) to look for the whole phrase:1
"via:instapaper"
- Use asterisk (
*
) following a search term to mark it as a prefix token:1
tags:"via*"
- Use operators like
AND
,OR
,NOT
(case sensitive) to specify conditions:1 2 3
youtube AND comedy ios OR iphone OR ipad OR macos ios NOT iphone
- Group conditions with parentheses:
1
(twitter OR youtube) AND comedy
- Add
title:
,description
,url:
,tags:
to specify the scope for each search term. Scope is assumed to be any otherwise.1 2
tags:ios AND title:developer apple NOT url:"apple.com"