panex 0.9.16 → 0.9.17
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 +15 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ A terminal UI for running multiple processes in parallel. Like Turborepo's TUI,
|
|
|
16
16
|
- **Native binary** - Fast startup, no runtime dependencies
|
|
17
17
|
- **Wrapped lines** - Optional line wrapping per pane (`:w` label suffix)
|
|
18
18
|
- **Interactive mode** - Focus a pane for full interactivity (with Mouse support)
|
|
19
|
+
- **Mouse forwarding** - Mouse clicks/drags/scrolls forwarded to child TUI apps in focus mode
|
|
20
|
+
- **Nestable** - Run panex inside panex, or any TUI app, with correct rendering
|
|
19
21
|
|
|
20
22
|
## Installation
|
|
21
23
|
|
|
@@ -51,6 +53,9 @@ panex "helix" "npm run build" -n "helix!:w,build:w"
|
|
|
51
53
|
|
|
52
54
|
# Custom shutdown timeout (default: 500ms)
|
|
53
55
|
panex -t 1000 "npm run dev" # 1 second graceful shutdown
|
|
56
|
+
|
|
57
|
+
# Disable auto-copy on mouse select (require y/Enter/Ctrl-C to copy)
|
|
58
|
+
panex --no-auto-copy "npm run api" "npm run web"
|
|
54
59
|
```
|
|
55
60
|
|
|
56
61
|
### Keyboard Shortcuts
|
|
@@ -70,17 +75,27 @@ panex -t 1000 "npm run dev" # 1 second graceful shutdown
|
|
|
70
75
|
| `b` | Jump to bottom |
|
|
71
76
|
| `PgUp/PgDn` | Scroll output |
|
|
72
77
|
| `?` | Show help |
|
|
78
|
+
| `v` | Visual select (char-wise) |
|
|
79
|
+
| `V` | Visual select (line-wise) |
|
|
80
|
+
| `y/Enter` | Copy selection to clipboard |
|
|
73
81
|
| `q` | Quit panex |
|
|
74
82
|
|
|
75
83
|
### Mouse
|
|
76
84
|
|
|
85
|
+
**Browse mode:**
|
|
86
|
+
|
|
77
87
|
| Click | Action |
|
|
78
88
|
| ------------ | ----------------------- |
|
|
79
89
|
| Left panel | Exit focus, select item |
|
|
80
90
|
| Right panel | Enter focus mode |
|
|
91
|
+
| Drag | Select text (auto-copy) |
|
|
92
|
+
| Double-click | Select word |
|
|
93
|
+
| Triple-click | Select line |
|
|
81
94
|
| Status bar | Exit focus mode |
|
|
82
95
|
| Scroll wheel | Scroll output |
|
|
83
96
|
|
|
97
|
+
**Focus mode:** All mouse events (click, drag, scroll) on the output panel are forwarded to the child process as SGR escape sequences. Click the left panel or status bar to exit focus.
|
|
98
|
+
|
|
84
99
|
## Why panex?
|
|
85
100
|
|
|
86
101
|
| Feature | panex | concurrently | mprocs | turbo |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "panex",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.17",
|
|
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.17",
|
|
32
|
+
"@king8fisher/panex-darwin-x64": "0.9.17",
|
|
33
|
+
"@king8fisher/panex-linux-arm64": "0.9.17",
|
|
34
|
+
"@king8fisher/panex-linux-x64": "0.9.17",
|
|
35
|
+
"@king8fisher/panex-win32-arm64": "0.9.17",
|
|
36
|
+
"@king8fisher/panex-win32-x64": "0.9.17"
|
|
37
37
|
}
|
|
38
38
|
}
|