panex 0.9.23 → 0.9.25
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/README.md +7 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -56,6 +56,9 @@ panex -t 1000 "npm run dev" # 1 second graceful shutdown
|
|
|
56
56
|
|
|
57
57
|
# Disable auto-copy on mouse select (require y/Enter/Ctrl-C to copy)
|
|
58
58
|
panex --no-auto-copy "npm run api" "npm run web"
|
|
59
|
+
|
|
60
|
+
# Preserve restart scrollback and insert a boxed restart marker
|
|
61
|
+
panex --show-restart-marker "npm run api" "npm run web"
|
|
59
62
|
```
|
|
60
63
|
|
|
61
64
|
### Keyboard Shortcuts
|
|
@@ -68,7 +71,7 @@ panex --no-auto-copy "npm run api" "npm run web"
|
|
|
68
71
|
| `Shift-Tab` | Exit focus mode (unless disabled) |
|
|
69
72
|
| `r` | Restart selected process |
|
|
70
73
|
| `x` | Kill selected process |
|
|
71
|
-
| `
|
|
74
|
+
| `R` | Restart all processes |
|
|
72
75
|
| `w` | Toggle line wrapping |
|
|
73
76
|
| `g` | Toggle pin (freeze/follow output) |
|
|
74
77
|
| `t` | Jump to top |
|
|
@@ -80,6 +83,8 @@ panex --no-auto-copy "npm run api" "npm run web"
|
|
|
80
83
|
| `y/Enter` | Copy selection to clipboard |
|
|
81
84
|
| `q` | Quit panex |
|
|
82
85
|
|
|
86
|
+
Restarts clear the selected process output by default. Use `--show-restart-marker` to preserve scrollback and insert a boxed `Restarted YYYY-MM-DD HH:MM:SS` marker instead.
|
|
87
|
+
|
|
83
88
|
### Mouse
|
|
84
89
|
|
|
85
90
|
**Browse mode:**
|
|
@@ -132,7 +137,7 @@ tmux is a vastly more powerful and mature tool. panex solves a narrower problem
|
|
|
132
137
|
| Capability | panex | tmux |
|
|
133
138
|
| --- | --- | --- |
|
|
134
139
|
| **Zero config** | `panex "cmd1" "cmd2"` — done | Need tmuxinator/scripts for multi-process startup |
|
|
135
|
-
| **Process lifecycle** | `r` restart, `x` kill, `
|
|
140
|
+
| **Process lifecycle** | `r` restart, `x` kill, `R` restart all — from the UI | Process dies? Navigate to pane, retype command |
|
|
136
141
|
| **Process status** | Built-in list showing running/exited/crashed with exit codes | No process awareness — just shell panes |
|
|
137
142
|
| **Learning curve** | `?` shows help, mouse works, usable immediately | Steep — prefix keys, no on-screen hints, needs cheat sheets |
|
|
138
143
|
| **Layout** | Automatic — all processes shown immediately | Manual splits, or write a config/script |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "panex",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.25",
|
|
4
4
|
"description": "Terminal UI for running multiple processes in parallel",
|
|
5
5
|
"bin": {
|
|
6
6
|
"panex": "bin.js"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"author": "Anton Veretennikov (king8fisher)",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@king8fisher/panex-darwin-arm64": "0.9.
|
|
32
|
-
"@king8fisher/panex-darwin-x64": "0.9.
|
|
33
|
-
"@king8fisher/panex-linux-arm64": "0.9.
|
|
34
|
-
"@king8fisher/panex-linux-x64": "0.9.
|
|
35
|
-
"@king8fisher/panex-win32-arm64": "0.9.
|
|
36
|
-
"@king8fisher/panex-win32-x64": "0.9.
|
|
31
|
+
"@king8fisher/panex-darwin-arm64": "0.9.25",
|
|
32
|
+
"@king8fisher/panex-darwin-x64": "0.9.25",
|
|
33
|
+
"@king8fisher/panex-linux-arm64": "0.9.25",
|
|
34
|
+
"@king8fisher/panex-linux-x64": "0.9.25",
|
|
35
|
+
"@king8fisher/panex-win32-arm64": "0.9.25",
|
|
36
|
+
"@king8fisher/panex-win32-x64": "0.9.25"
|
|
37
37
|
}
|
|
38
38
|
}
|