alfred-fzf-safari-history
v1.1.10
Published
Fuzzy search safari history
Downloads
11
Maintainers
Readme
alfred-fzf-safari-history
Fuzzy search your safari history.
This workflow uses:
Installation
npm i -g alfred-fzf-safari-history
Usage
Prefix
Default prefix to trigger the workflow is: sh
Global search
sh <fuzzy search keywords>
Scope search
You can limit the search scope to a particular domain by specifying the domain keywords with @ prefix.
Note:
- Domain keywords use exact match algorithm. So
@git
will only matchgithub.com
orgitlab.com
, but won't match<g>ofor<it>.com
. - You can specify multiple domain keywords in your query to incrementally fine tune your search. For example:
too broad @git need narrowing down to @hub and only dev tld @dev
will search only domains that matchgit.*hub.*dev
such asgithub.dev
Example:
sh @git <fuzzy search keywords>
will perform the search for all pages whose domain includes the wordgit
.sh <fuzzy search keywords> @git
does the same thing as above.sh @git <fuzzy search keywords> @lab
will perform the search for all pages whose domain isgit.*lab
, for example:gitlab.com
instead ofgithub.com