numux 1.5.1 → 1.6.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/README.md +15 -12
- package/dist/bin.js +20 -2608
- package/dist/numux.js +2614 -0
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -268,18 +268,15 @@ Persistent processes that crash are auto-restarted with exponential backoff (1s
|
|
|
268
268
|
| Key | Action |
|
|
269
269
|
|-----|--------|
|
|
270
270
|
| `Ctrl+C` | Quit (graceful shutdown) |
|
|
271
|
-
| `
|
|
272
|
-
| `
|
|
273
|
-
| `
|
|
274
|
-
| `
|
|
275
|
-
| `
|
|
276
|
-
| `
|
|
277
|
-
| `
|
|
278
|
-
| `PageUp/PageDown` | Scroll output by page
|
|
279
|
-
| `Home/End` | Scroll to top/bottom
|
|
280
|
-
| `Alt+PageUp/PageDown` | Scroll output up/down |
|
|
281
|
-
| `Alt+Home/End` | Scroll to top/bottom |
|
|
282
|
-
| `Alt+F` | Search in active pane output |
|
|
271
|
+
| `R` | Restart active process |
|
|
272
|
+
| `Shift+R` | Restart all processes |
|
|
273
|
+
| `S` | Stop/start active process |
|
|
274
|
+
| `L` | Clear active pane output |
|
|
275
|
+
| `F` | Search in active pane output |
|
|
276
|
+
| `1`–`9` | Jump to tab |
|
|
277
|
+
| `Left/Right` | Cycle tabs |
|
|
278
|
+
| `PageUp/PageDown` | Scroll output by page |
|
|
279
|
+
| `Home/End` | Scroll to top/bottom |
|
|
283
280
|
|
|
284
281
|
While searching: type to filter, `Enter`/`Shift+Enter` to navigate matches, `Escape` to close.
|
|
285
282
|
|
|
@@ -298,6 +295,12 @@ Panes are readonly by default — keyboard input is not forwarded to processes.
|
|
|
298
295
|
| ✖ | Failed |
|
|
299
296
|
| ⊘ | Skipped |
|
|
300
297
|
|
|
298
|
+
## Dependencies
|
|
299
|
+
|
|
300
|
+
### ghostty-opentui
|
|
301
|
+
|
|
302
|
+
Despite the name, [`ghostty-opentui`](https://github.com/user/ghostty-opentui) is **not** a compatibility layer for the [Ghostty](https://ghostty.org) terminal. It uses Ghostty's Zig-based VT parser as the ANSI terminal emulation engine for OpenTUI's terminal renderable. It works in any terminal emulator (iTerm, Kitty, Alacritty, WezTerm, etc.) and adds ~8MB to install size due to native binaries.
|
|
303
|
+
|
|
301
304
|
## License
|
|
302
305
|
|
|
303
306
|
MIT
|