openmux 0.3.111 → 0.3.112

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.
Files changed (2) hide show
  1. package/README.md +8 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,21 +30,6 @@ A terminal multiplexer with master-stack layout (Zellij-style), built with:
30
30
 
31
31
  ## Installation
32
32
 
33
- > ⚠️ **Important Update Note for v0.3.0 Users**
34
- >
35
- > openmux v0.3.0 contains a quirky bug that prevents `openmux update` from working correctly.
36
- > If you're on v0.3.0, please update manually using one of the following methods:
37
- >
38
- > ```bash
39
- > # Option 1: Reinstall via install script
40
- > curl -fsSL https://raw.githubusercontent.com/monotykamary/openmux/main/scripts/install.sh | bash
41
- >
42
- > # Option 2: Update via package manager
43
- > bun update -g openmux
44
- > # or
45
- > npm update -g openmux
46
- > ```
47
-
48
33
  ### Quick Install (curl)
49
34
 
50
35
  ```bash
@@ -217,6 +202,7 @@ Notes:
217
202
  ### Template Overlay
218
203
 
219
204
  **Apply Tab:**
205
+
220
206
  - `↑` / `↓` - Navigate templates
221
207
  - `Enter` - Apply selected template
222
208
  - `Tab` - Switch to save tab
@@ -224,6 +210,7 @@ Notes:
224
210
  - `Esc` - Close overlay
225
211
 
226
212
  **Save Tab:**
213
+
227
214
  - `Enter` - Save current layout as template
228
215
  - `Tab` - Switch to apply tab
229
216
  - `Backspace` - Delete last character
@@ -232,6 +219,7 @@ Notes:
232
219
  ### Aggregate View
233
220
 
234
221
  **List:**
222
+
235
223
  - `↑` / `↓` - Navigate PTYs
236
224
  - `Enter` - Preview selected PTY
237
225
  - `Tab` - Jump to selected PTY and close view
@@ -241,12 +229,14 @@ Notes:
241
229
  - `Alt+Esc` - Close aggregate view
242
230
 
243
231
  **Preview:**
232
+
244
233
  - `Alt+Esc` - Return to list
245
234
  - `Alt+f` - Open search in preview
246
235
  - `Alt+x` - Kill current PTY
247
236
  - Full keyboard/mouse support for terminal interaction
248
237
 
249
238
  **Search (in preview):**
239
+
250
240
  - `Ctrl+n` - Next match
251
241
  - `Ctrl+p` - Previous match
252
242
  - `Enter` - Jump to match
@@ -254,6 +244,7 @@ Notes:
254
244
  - `Backspace` - Delete last character
255
245
 
256
246
  **Prefix (in preview):**
247
+
257
248
  - `q` - Quit openmux
258
249
  - `d` - Detach
259
250
  - `Esc` - Return to list
@@ -262,6 +253,7 @@ Notes:
262
253
  ### Session Picker
263
254
 
264
255
  **List Tab:**
256
+
265
257
  - `↑` / `↓` - Navigate sessions
266
258
  - `Enter` - Select or create session
267
259
  - `Ctrl+n` - Create new session
@@ -271,6 +263,7 @@ Notes:
271
263
  - `Esc` - Close picker
272
264
 
273
265
  **Rename Tab:**
266
+
274
267
  - `Enter` - Confirm new name
275
268
  - `Esc` - Cancel rename
276
269
  - `Backspace` - Delete last character
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.3.111",
3
+ "version": "0.3.112",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",