From 6a182a0025a2d440b97cb51d8e6080c10ccc6211 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sun, 1 Mar 2026 11:06:46 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Improve=20trigger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- src/plugin.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 50240dd..6a01ab1 100644 --- a/README.md +++ b/README.md @@ -34,12 +34,12 @@ sudo cp build/libgitmoji.so /usr/lib/albert/ ## Usage -Trigger the plugin with `g:` followed by your search query. +Trigger the plugin with `gm ` followed by your search query. Examples: -- `g:bug` - Search for bug-related gitmojis -- `g:*` - Show all gitmojis -- `g:deploy` - Search for deployment-related gitmojis +- `gm bug` - Search for bug-related gitmojis +- `gm *` - Show all gitmojis +- `gm deploy` - Search for deployment-related gitmojis ## Configuration diff --git a/src/plugin.cpp b/src/plugin.cpp index 861b735..ed5ef63 100644 --- a/src/plugin.cpp +++ b/src/plugin.cpp @@ -129,7 +129,7 @@ Plugin::Plugin() QString Plugin::defaultTrigger() const { - return u"g:"_s; + return u"gm "_s; } QString Plugin::synopsis(const QString &) const