1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 22:02:27 +01:00

Merge pull request #123 from femnad/issue-122-bookmark-tag-completion

Fix Bookmark Tag Completion
This commit is contained in:
dkearns
2016-01-09 00:34:00 +11:00

View File

@@ -437,7 +437,7 @@ var Bookmarks = Module("bookmarks", {
description: "A comma-separated list of tags",
completer: function tags(context) {
context.generate = () => new RealSet(Array.from(bookmarkcache)
.flatMap(b.tags));
.flatMap(b => b.tags));
context.keys = { text: identity, description: identity };
},