codeep 1.0.117 → 1.0.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.js +7 -0
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -163,6 +163,13 @@ export const App = () => {
|
|
|
163
163
|
return () => clearTimeout(timer);
|
|
164
164
|
}
|
|
165
165
|
}, [notification, notificationDuration]);
|
|
166
|
+
// Clear screen when switching to fullscreen views (non-chat screens)
|
|
167
|
+
// This ensures fullscreen components render from top, not below existing content
|
|
168
|
+
useEffect(() => {
|
|
169
|
+
if (screen !== 'chat') {
|
|
170
|
+
stdout?.write('\x1b[2J\x1b[H');
|
|
171
|
+
}
|
|
172
|
+
}, [screen, stdout]);
|
|
166
173
|
// Handle keyboard shortcuts
|
|
167
174
|
useInput((input, key) => {
|
|
168
175
|
// Ctrl+L to clear chat (F5 doesn't work reliably in all terminals)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.118",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|