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
which will symlink the workflow to Alfred's workflow directory.
17
17
18
18
19
-
## bookmarks ##
19
+
## fuzzy ##
20
20
21
-
Custom implementation of [`fuzzy.Sortable`][fuzzy-if], which enables fuzzy matching and sorting.
21
+
**Alfred 4+ only**
22
22
23
-
Displays and filters a list of your Safari bookmarks.
23
+
Basic demonstration of using fuzzy filtering.
24
24
25
+
Displays and filters contents of ~/Downloads in Alfred, and allows you to open files, reveal them or browse them in Alfred.
25
26
26
-
## fuzzy ##
27
27
28
-
Basic demonstration of using fuzzy filtering.
28
+
## reading-list ##
29
+
30
+
Demonstrates customised fuzzy sorting.
31
+
32
+
The standard fuzzy sort is only concerned with match quality. This workflow has a custom implementation of [`fuzzy.Sortable`][fuzzy-if] and fuzzy filtering to keep a list of books sorted by status ("unread", "unpublished", "read").
33
+
34
+
Regular fuzzy sorting only considers match quality, so with the query
35
+
"kingkiller", the Kingkiller Chronicle series would be sorted based on where
36
+
the term "kingkiller" appears in the title, i.e. shortest title wins:
37
+
38
+
The Doors of Stone (The Kingkiller Chronicle, #3) [unpublished]
39
+
The Wise Man's Fear (The Kingkiller Chronicle, #2) [unread]
40
+
The Name of the Wind (The Kingkiller Chronicle, #1) [read]
41
+
42
+
This custom implementation sorts by status then match quality, thus keeping
43
+
unread books before unpublished and read ones:
29
44
30
-
Displays and filters a list of subdirectories of ~/ in Alfred, and allows you to open the folders or browse them in Alfred.
45
+
The Wise Man's Fear (The Kingkiller Chronicle, #2) [unread]
46
+
The Doors of Stone (The Kingkiller Chronicle, #3) [unpublished]
47
+
The Name of the Wind (The Kingkiller Chronicle, #1) [read]
31
48
32
49
33
50
## update ##
@@ -46,4 +63,4 @@ Shows a list of repos from GitHub tagged `alfred-workflow`.
0 commit comments