codeep 1.0.92 → 1.0.93

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.
Files changed (2) hide show
  1. package/dist/app.js +2 -8
  2. package/package.json +1 -1
package/dist/app.js CHANGED
@@ -173,18 +173,12 @@ export const App = () => {
173
173
  return () => clearTimeout(timer);
174
174
  }
175
175
  }, [notification, notificationDuration]);
176
- // Clear input when opening modals and clear terminal when closing
176
+ // Clear input when opening modals
177
177
  useEffect(() => {
178
178
  if (modalScreen !== null) {
179
179
  setClearInputTrigger(prev => prev + 1);
180
180
  }
181
- else {
182
- // Modal was just closed - clear any remaining content
183
- setTimeout(() => {
184
- stdout?.write('\x1b[2J\x1b[H');
185
- }, 0);
186
- }
187
- }, [modalScreen, stdout]);
181
+ }, [modalScreen]);
188
182
  // Handle keyboard shortcuts
189
183
  useInput((input, key) => {
190
184
  // 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.92",
3
+ "version": "1.0.93",
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",