You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -105,6 +119,11 @@ includes a *Snapshot* button to capture the current window position and size
105
119
for these fields.
106
120
107
121
`query_scale` and `list_scale` control the size of the search field and the results list separately. Values around `1.0` keep the default look while higher numbers enlarge the respective element up to five times.
122
+
`enable_toasts` controls short pop-up notifications when saving settings or commands. Set it to `false` to disable these messages.
123
+
`fuzzy_weight` and `usage_weight` adjust how results are ranked. The fuzzy weight multiplies the match score while the usage weight favours frequently launched actions.
124
+
`history_limit` defines how many entries the history plugin keeps.
125
+
`enabled_capabilities` maps plugin names to capability identifiers so features can be toggled individually. The folders plugin, for example, exposes `show_full_path`.
126
+
108
127
109
128
If you choose `CapsLock` as the hotkey, the launcher suppresses the normal
110
129
CapsLock toggle **when compiled with the `unstable_grab` feature enabled**.
@@ -146,6 +165,8 @@ Place the resulting library file in one of the directories listed under
146
165
147
166
Plugins can be enabled or disabled from the **Settings** window. The list of
148
167
active plugins is stored in the `enabled_plugins` section of `settings.json`.
168
+
The **Plugin Settings** dialog provides a graphical way to manage plugin directories, enable or disable plugins and toggle capabilities like `show_full_path`.
169
+
149
170
150
171
Example:
151
172
@@ -200,6 +221,13 @@ When diagnosing hotkey issues it can be helpful to enable info level logging:
200
221
```bash
201
222
RUST_LOG=info cargo run
202
223
```
224
+
## Tips
225
+
226
+
- Press the help hotkey (F1 by default) to display a quick list of available commands.
227
+
- Right click a folder result to set a custom alias for easier access.
228
+
- Use the *Snapshot* button in Settings when adjusting static window placement.
229
+
- Tweak `fuzzy_weight` and `usage_weight` if you want results to favour name matches or past usage differently.
0 commit comments