♻️ Improve trigger

This commit is contained in:
2026-03-01 11:06:46 +01:00
parent 5864b83c25
commit 6a182a0025
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -129,7 +129,7 @@ Plugin::Plugin()
QString Plugin::defaultTrigger() const
{
return u"g:"_s;
return u"gm "_s;
}
QString Plugin::synopsis(const QString &) const