Merge pull request #928 from ferologics/feat/reload-full-scrollback

feat(coding-agent): /reload now re-renders entire scrollback
This commit is contained in:
Mario Zechner 2026-01-24 02:53:57 +01:00 committed by GitHub
commit cdb0400347
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@
### Changed
- `/reload` now re-renders the entire scrollback so updated extension components are visible immediately
- Skill, prompt template, and theme discovery now use settings and CLI path arrays instead of legacy filters ([#645](https://github.com/badlogic/pi-mono/issues/645))
### Fixed

View file

@ -3623,6 +3623,7 @@ export class InteractiveMode {
if (runner) {
this.setupExtensionShortcuts(runner);
}
this.rebuildChatFromMessages();
restoreEditor();
this.showLoadedResources({ extensionPaths: runner?.getExtensionPaths() ?? [], force: true });
const modelsJsonError = this.session.modelRegistry.getError();