You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
why: Restoring native before_script streaming made progress-lines a no-op.
Explicit panel requests should still capture script output, while default
loads should leave TTY-aware scripts attached to the terminal.
what:
- Capture before_script output only for explicit nonzero progress-lines
- Keep default and zero-line modes on native script output
- Update CLI docs, env docs, changelog, and load tests
Copy file name to clipboardExpand all lines: CHANGES
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ tmuxp 1.67.0 makes {ref}`tmuxp-load` visibly track the workspace build it is per
120
120
121
121
The {ref}`tmuxp-load` command now shows an animated progress display while it builds a session. Built-in formats cover terse, window-focused, pane-focused, and verbose views, while `--progress-format` and `TMUXP_PROGRESS_FORMAT` allow a custom display.
122
122
123
-
`--progress-lines` and `TMUXP_PROGRESS_LINES` control how much `before_script` output appears in the panel, and `--no-progress` or `TMUXP_PROGRESS=0` restores quiet output.
123
+
`--progress-lines` and `TMUXP_PROGRESS_LINES` capture `before_script` output in the panel when requested, and `--no-progress` or `TMUXP_PROGRESS=0` restores quiet output.
The spinner shows script output in a panel below the spinner line. Control the panel height with `--progress-lines`:
221
+
By default, `before_script` runs with its normal terminal output before the spinner appears. Use `--progress-lines` to capture that output in a panel below the spinner line:
222
222
223
-
Hide the panel entirely (script output goes to stdout):
223
+
Keep native script output and hide the panel:
224
224
225
225
```console
226
226
$ tmuxp load --progress-lines 0 myproject
227
227
```
228
228
229
-
Show unlimited lines (capped to terminal height):
229
+
Capture unlimited lines (capped to terminal height):
0 commit comments