@ogulcancelik/pi-spar 0.1.1 → 0.1.2
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/package.json +1 -1
- package/peek.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ogulcancelik/pi-spar",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Agent-to-agent sparring for pi. Back-and-forth conversations with peer AI models for debugging, design review, and challenging your thinking.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
package/peek.ts
CHANGED
|
@@ -601,7 +601,7 @@ export class SparPeekOverlay {
|
|
|
601
601
|
this.followMode = false;
|
|
602
602
|
this.scrollOffset = 0;
|
|
603
603
|
this.tui.requestRender();
|
|
604
|
-
} else if (data === "G") {
|
|
604
|
+
} else if (data === "G" || matchesKey(data, "shift+g")) {
|
|
605
605
|
this.followMode = true;
|
|
606
606
|
this.scrollOffset = 999999;
|
|
607
607
|
this.tui.requestRender();
|