๐ Plugin - App
Searches and launches installed applications โ Win32, UWP (Microsoft Store), and shortcuts.
Keywords:
appยท*(global โ active on every search) - Edit inPlugins.json
๐ Indexingโ
At startup, the App plugin builds a search index from three sources:
| Source | What's included |
|---|---|
.lnk shortcuts | Start Menu (system + user), Desktop |
| UWP / Store apps | Via Get-StartApps (PowerShell) |
| Registry | HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths |
Typing anything searches across all indexed apps using a 4-pass fuzzy strategy:
- Acronym match โ
vscmatchesVisual Studio Code - Substring match โ
chromematchesGoogle Chrome - Fuzzy WRatio โ handles typos and partial words
- Partial ratio โ fallback for short queries
Results are sorted by match quality. Frequently launched apps are boosted via usage history.
๐ Aliases โ aliases.dataโ
Define custom shorthand names for apps. Useful for apps with long or inconsistent names.
# aliases.data
# Format: alias=app_name
pp=adobe premiere pro
ps=photoshop
vsc=visual studio code
cmd=command prompt
pwsh=powershell
- The alias maps to the app's display name (as it appears in the index).
- Aliases are case-insensitive.
- Multiple aliases can point to the same app.