From 842a65f06ac5c64eb533ac0a5250776f5f030cdb Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Mon, 12 Jan 2026 19:00:33 +0100 Subject: [PATCH] Add changelog and docs for settings fuzzy search (#643) --- packages/coding-agent/CHANGELOG.md | 1 + packages/coding-agent/docs/tui.md | 1 + packages/tui/CHANGELOG.md | 1 + 3 files changed, 3 insertions(+) diff --git a/packages/coding-agent/CHANGELOG.md b/packages/coding-agent/CHANGELOG.md index 887b548a..c5633b68 100644 --- a/packages/coding-agent/CHANGELOG.md +++ b/packages/coding-agent/CHANGELOG.md @@ -12,6 +12,7 @@ - Extension example: `notify.ts` for desktop notifications via OSC 777 escape sequence ([#658](https://github.com/badlogic/pi-mono/pull/658) by [@ferologics](https://github.com/ferologics)) - Inline hint for queued messages showing the `Alt+Up` restore shortcut ([#657](https://github.com/badlogic/pi-mono/pull/657) by [@tmustier](https://github.com/tmustier)) - Page-up/down navigation in `/resume` session selector to jump by 5 items ([#662](https://github.com/badlogic/pi-mono/pull/662) by [@aliou](https://github.com/aliou)) +- Fuzzy search in `/settings` menu: type to filter settings by label ([#643](https://github.com/badlogic/pi-mono/pull/643) by [@ninlds](https://github.com/ninlds)) ### Fixed diff --git a/packages/coding-agent/docs/tui.md b/packages/coding-agent/docs/tui.md index 97de67ee..c7aa9a0e 100644 --- a/packages/coding-agent/docs/tui.md +++ b/packages/coding-agent/docs/tui.md @@ -568,6 +568,7 @@ pi.registerCommand("settings", { ctx.ui.notify(`${id} = ${newValue}`, "info"); }, () => done(undefined), // On close + { enableSearch: true }, // Optional: enable fuzzy search by label ); container.addChild(settingsList); diff --git a/packages/tui/CHANGELOG.md b/packages/tui/CHANGELOG.md index 9d1d058f..edd62bb4 100644 --- a/packages/tui/CHANGELOG.md +++ b/packages/tui/CHANGELOG.md @@ -4,6 +4,7 @@ ### Added +- `SettingsListOptions` with `enableSearch` for fuzzy filtering in `SettingsList` ([#643](https://github.com/badlogic/pi-mono/pull/643) by [@ninlds](https://github.com/ninlds)) - `pageUp` and `pageDown` key support with `selectPageUp`/`selectPageDown` editor actions ([#662](https://github.com/badlogic/pi-mono/pull/662) by [@aliou](https://github.com/aliou)) ### Fixed