@cliphijack/santaclaude 0.9.0 → 0.9.1
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/santaclaude.js +1 -1
package/package.json
CHANGED
package/santaclaude.js
CHANGED
|
@@ -67,7 +67,7 @@ function listWindows(session) {
|
|
|
67
67
|
// 각 루돌프(탭) 화면 캡처 — 웹 미러용 (마지막 ~30줄)
|
|
68
68
|
function captureWindow(session, name) {
|
|
69
69
|
// -e: ANSI 색상 보존(웹에서 터미널 색 재현), -S -40: 최근 40줄
|
|
70
|
-
try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-
|
|
70
|
+
try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-200'], { encoding: 'utf8' }).replace(/\n+$/, '').slice(-16000); }
|
|
71
71
|
catch (e) { return ''; }
|
|
72
72
|
}
|
|
73
73
|
function captureAll(session) {
|