ideacode 1.1.7 → 1.1.8

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/repl.js +3 -0
  2. package/package.json +2 -2
package/dist/repl.js CHANGED
@@ -867,6 +867,9 @@ export function Repl({ apiKey, cwd, onQuit }) {
867
867
  setShowHelpModal(true);
868
868
  return;
869
869
  }
870
+ if (input === "[I" || input === "[O") {
871
+ return;
872
+ }
870
873
  if (input && !key.ctrl && !key.meta) {
871
874
  setInputValue((prev) => prev.slice(0, cur) + input + prev.slice(cur));
872
875
  setInputCursor(cur + input.length);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ideacode",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "CLI TUI for AI agents via OpenRouter — agentic loop, tools, markdown",
5
5
  "type": "module",
6
6
  "repository": {
@@ -34,7 +34,7 @@
34
34
  "chalk": "^5.6.2",
35
35
  "cli-highlight": "^2.1.11",
36
36
  "dotenv": "^17.2.3",
37
- "glob": "^11.0.0",
37
+ "glob": "^13.0.1",
38
38
  "gradient-string": "^3.0.0",
39
39
  "ink": "^5.1.0",
40
40
  "marked": "^15.0.12",