openmux 0.2.85 → 0.2.87

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 +23 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -164,7 +164,7 @@ bun dev # Run with watch mode
164
164
 
165
165
  ### Command Palette
166
166
 
167
- - `↑` / `↓` or `Ctrl+k` / `Ctrl+j` - Navigate commands
167
+ - `↑` / `↓` - Navigate commands
168
168
  - `Enter` - Execute selected command
169
169
  - `Esc` - Close command palette
170
170
  - `Backspace` - Delete last character
@@ -187,7 +187,7 @@ bun dev # Run with watch mode
187
187
  ### Aggregate View
188
188
 
189
189
  **List:**
190
- - `j/k` / `↑` / `↓` - Navigate PTYs
190
+ - `↑` / `↓` - Navigate PTYs
191
191
  - `Enter` - Preview selected PTY
192
192
  - `Tab` - Jump to selected PTY and close view
193
193
  - `Alt+a` - Toggle scope (all workspaces vs current)
@@ -237,6 +237,26 @@ bun dev # Run with watch mode
237
237
  - `Enter` - Confirm
238
238
  - `Esc` - Cancel
239
239
 
240
+ ### Vim Mode (Overlays, opt-in)
241
+
242
+ Enable via the command palette ("Toggle overlay vim mode"), or in `config.toml`:
243
+
244
+ ```toml
245
+ [keyboard]
246
+ vimMode = "overlays"
247
+ vimSequenceTimeoutMs = 1000
248
+ ```
249
+
250
+ When enabled, overlays open in normal mode:
251
+
252
+ - `j/k` - Navigate lists
253
+ - `gg` / `G` - Jump to first/last item
254
+ - `Enter` - Confirm/preview
255
+ - `q` - Close overlay
256
+ - `i` - Enter insert mode
257
+ - `Esc` - Return to normal mode
258
+ - Search overlays: `n` / `N` for next/prev match
259
+
240
260
  ## Concepts
241
261
 
242
262
  ### Why openmux (vs tmux / zellij)
@@ -292,7 +312,7 @@ A fullscreen overlay (`Alt+g` or `Ctrl+b` then `g`) that lets you browse all PTY
292
312
  - **Card-style PTY list** showing directory, process name, and git branch
293
313
  - **Interactive terminal preview** with full input support (keyboard + mouse)
294
314
  - **Filter by typing** to search by process name, directory, or git branch
295
- - Navigate with `j/k` or arrow keys, `Enter` to interact, `Prefix+Esc` to return to list
315
+ - Navigate with arrow keys (or `j/k` in overlay vim mode), `Enter` to interact, `Prefix+Esc` to return to list
296
316
 
297
317
  ## Development Status
298
318
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.2.85",
3
+ "version": "0.2.87",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",