tmux-tui 1.5.0 → 1.7.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 +7 -0
- package/dist/tmuxtui.js +125 -125
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ Interactive terminal UI for managing tmux sessions. Browse, create, rename, deta
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
9
|
- **Session browser** — list all tmux sessions sorted by last used, with window count, working directory, and creation time
|
|
10
|
+
- **Scrollable list** — long session lists page to fit your terminal height, with the cursor auto-scrolling and `▲/▼ N more` indicators
|
|
10
11
|
- **Quick attach** — select and attach to any session instantly; auto sets terminal tab title to `[tmux] session_name`
|
|
11
12
|
- **Create sessions** — new session with custom name and working directory
|
|
12
13
|
- **Window manager** — press `c` to enter config mode: create, rename, delete windows, and initialize pane layouts
|
|
@@ -26,6 +27,10 @@ If you want sessions, windows, panes, and even some running programs to survive
|
|
|
26
27
|
|
|
27
28
|
tmuxtui works seamlessly alongside both — they snapshot tmux's state to disk; tmuxtui reads whatever state the server currently has.
|
|
28
29
|
|
|
30
|
+
If the tmux server isn't running when tmuxtui starts (e.g. right after a reboot) and it detects tmux-resurrect installed, it automatically starts the server and runs `restore.sh` so your saved sessions come back before the picker renders — no manual `prefix + Ctrl-r` needed.
|
|
31
|
+
|
|
32
|
+
Press `h` in the TUI to see a **Plugins** status block showing whether tmux-resurrect, tmux-continuum, and tpm are installed, and which directory tmuxtui is checking (see `pluginsDir` below if yours isn't at the default location).
|
|
33
|
+
|
|
29
34
|
## Requirements
|
|
30
35
|
|
|
31
36
|
- Node.js >= 18
|
|
@@ -79,6 +84,7 @@ Create `~/.config/tmuxtui/config.json` to customize behavior:
|
|
|
79
84
|
"confirmBeforeKill": true,
|
|
80
85
|
"autoAttachOnCreate": false,
|
|
81
86
|
"refreshInterval": 0,
|
|
87
|
+
"pluginsDir": "~/.tmux/plugins",
|
|
82
88
|
"keybindings": {
|
|
83
89
|
"quit": "escape",
|
|
84
90
|
"new": "n",
|
|
@@ -100,6 +106,7 @@ Create `~/.config/tmuxtui/config.json` to customize behavior:
|
|
|
100
106
|
| `confirmBeforeKill` | `true` | Show confirmation before killing sessions |
|
|
101
107
|
| `autoAttachOnCreate` | `false` | Auto-attach after creating a new session |
|
|
102
108
|
| `refreshInterval` | `0` | Auto-refresh interval in seconds (0 = disabled) |
|
|
109
|
+
| `pluginsDir` | `"~/.tmux/plugins"` | Where tmuxtui looks for tmux-resurrect / tmux-continuum / tpm |
|
|
103
110
|
| `ui.showPath` | `true` | Show session working directory |
|
|
104
111
|
| `ui.showSessionId` | `false` | Show tmux session ID |
|
|
105
112
|
| `ui.sessionNameWidth` | `20` | Session name column width (10-60) |
|