added support to list all gitmojis

This commit is contained in:
Andreas Schneider 2019-02-08 14:31:50 +01:00
parent 4ed2d152f8
commit 16f38ce21b
1 changed files with 25 additions and 13 deletions

View File

@ -2,7 +2,9 @@
"""gitmoji Picker for Albert
Usage: g: gitmoji name or description
Example: g: bug"""
Examples:
g:bug
g:*"""
from albertv0 import *
@ -31,6 +33,12 @@ def initialize():
gitmojis.append(gitmoji)
def handleQuery(query):
if not query.isValid or not query.isTriggered:
return []
if query.string == "*":
matches = gitmojis
else:
needles = query.string.lower().split()
matches = []
@ -42,10 +50,14 @@ def handleQuery(query):
result["matchCount"] = matchCount
matches.append(result)
if not query.isValid:
return []
matches = sorted(matches, key=lambda data: data["matchCount"], reverse=True)
if query.isValid and query.isTriggered:
if query.isValid:
return [Item(id=match["name"], completion=match["name"], icon=match["emoji"], text=match["emoji"] + " " + match["code"], subtext=match["description"], actions=[ClipAction("Copy to clipboard", match["code"])]) for match in matches]
else:
return []
def count_matches(tokens, needles):