@@ -11,7 +11,7 @@ frontend for your project.
11
11
12
12
Features
13
13
14
- As of AwGo 0.17 , all applicable features of Alfred 4.0 are supported.
14
+ As of AwGo 0.26 , all applicable features of Alfred 4.1 are supported.
15
15
16
16
The main features are:
17
17
@@ -185,12 +185,12 @@ matching algorithm.
185
185
Workflow.Filter() sorts feedback Items against the provided query, removing
186
186
those that do not match.
187
187
188
- Sorting is performed by subpackage fuzzy via the fuzzy.Sortable interface.
189
-
190
188
See _examples/fuzzy for a basic demonstration, and _examples/bookmarks for a
191
189
demonstration of implementing fuzzy.Sortable on your own structs and customising
192
190
the fuzzy sort settings.
193
191
192
+ Fuzzy matching is done by package https://godoc.org/go.deanishe.net/fuzzy
193
+
194
194
195
195
Logging
196
196
@@ -208,11 +208,11 @@ and in this case prepends filename:linenumber: to log messages.
208
208
Workflow settings
209
209
210
210
The Config struct (which is included in Workflow as Workflow.Config) provides an
211
- interface to the workflow's settings from the Workflow Environment Variables panel.
212
- https://www.alfredapp.com/help/workflows/advanced/variables/#environment
211
+ interface to the workflow's settings from the Workflow Environment Variables panel
212
+ (see https://www.alfredapp.com/help/workflows/advanced/variables/#environment).
213
213
214
214
Alfred exports these settings as environment variables, and you can read them
215
- ad-hoc with the Config.Get*() methods, and save values back to Alfred with
215
+ ad-hoc with the Config.Get*() methods, and save values back to Alfred/info.plist with
216
216
Config.Set().
217
217
218
218
Using Config.To() and Config.From(), you can "bind" your own structs to the
@@ -234,7 +234,7 @@ settings in Alfred:
234
234
// handle error
235
235
}
236
236
237
- // Save Options back to Alfred.
237
+ // Save Options back to Alfred/info.plist .
238
238
if err := cfg.From(opts); err != nil {
239
239
// handle error
240
240
}
@@ -247,7 +247,7 @@ Alfred actions
247
247
248
248
The Alfred struct provides methods for the rest of Alfred's AppleScript
249
249
API. Amongst other things, you can use it to tell Alfred to open, to search
250
- for a query, or to browse/action files & directories.
250
+ for a query, to browse/action files & directories, or to run External Triggers .
251
251
252
252
See documentation of the Alfred struct for more information.
253
253
0 commit comments