jefrichat-mcp 0.46.0 → 0.47.0
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/index.js +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10848,10 +10848,12 @@ async function runWrapped(argv) {
|
|
|
10848
10848
|
cp5.spawnSync(cmd, args, { stdio: "ignore" });
|
|
10849
10849
|
cp5.spawnSync("tmux", ["set-option", "-t", name, "mouse", "on"], { stdio: "ignore" });
|
|
10850
10850
|
cp5.spawnSync("tmux", ["set-option", "-t", name, "set-clipboard", "on"], { stdio: "ignore" });
|
|
10851
|
-
|
|
10852
|
-
|
|
10851
|
+
cp5.spawnSync("tmux", ["set-option", "-t", name, "history-limit", "50000"], { stdio: "ignore" });
|
|
10852
|
+
for (const table of ["copy-mode", "copy-mode-vi"]) {
|
|
10853
|
+
cp5.spawnSync("tmux", ["bind-key", "-T", table, "WheelUpPane", "send-keys", "-N2", "-X", "scroll-up"], { stdio: "ignore" });
|
|
10854
|
+
cp5.spawnSync("tmux", ["bind-key", "-T", table, "WheelDownPane", "send-keys", "-N2", "-X", "scroll-down"], { stdio: "ignore" });
|
|
10855
|
+
if (process.platform === "darwin")
|
|
10853
10856
|
cp5.spawnSync("tmux", ["bind-key", "-T", table, "MouseDragEnd1Pane", "send-keys", "-X", "copy-pipe-and-cancel", "pbcopy"], { stdio: "ignore" });
|
|
10854
|
-
}
|
|
10855
10857
|
}
|
|
10856
10858
|
return spawnInherit("tmux", ["attach-session", "-t", name]);
|
|
10857
10859
|
}
|
package/package.json
CHANGED