projmux 0.8.2 → 0.8.3
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/docs/agent-workflow.md +1 -1
- package/docs/keybindings.md +9 -3
- package/package.json +5 -5
package/docs/agent-workflow.md
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
- `make test` also covers AI semantic badge renderer aggregation for window-list, sidebar rows, switch window tabs, popup pane summaries, and pane-border topic badges using prompt-required > response-complete > in-progress priority while preserving blank no-state lanes, response-complete live badge consume on attention clear without idling action-required/progress badges, plus Settings > Appearance AI badge style selection for dot/emoji/off pane-border, Alt-1 sidebar window/preview tabs, and tmux window-status compatibility with dot as the persisted/config fallback.
|
|
45
45
|
- `make test` also covers AI semantic badge Phase 3 theme-role hardening: `@projmux_ai_badge_kind` storage values and aggregate priority stay unchanged, `minimal` remains a read-time alias for the `off` badge style, progress/success/action-required badge roles stay distinct, permission/input status badges do not use critical red, and critical notify queue severity does not drive live AI status badge colors or desktop notification urgency.
|
|
46
46
|
- `make test` also covers keybinding surface tier catalog rules, action-centered `keymap.toml` `keys = [...]` multi-alias parsing/writing, quoted internal `Surface:Action` tables, legacy popup action ID aliases, canonical popup toggle names, AI split popup-vs-direct action labels, generated tmux config multi-alias rendering, global/direct conflict detection, surface-scoped native picker command conflict detection, Settings Keybindings list/search/detail surface-aware picker-local labels, compact action-list state copy, flat Keys list/action detail rows, key detail remove/test rows, capture-unavailable Add key direct recorder routing with Advanced typed entry retained on Action detail, recorder Recording/Staged/Confirmed transitions, empty Enter no-op, Esc cancellation, staged candidate replacement, native byte-stream normalization/confirmation/conflict recovery, and one-reader/no-event-leak lifecycle, collapsed Troubleshooting entry copy, Settings delivery diagnostics that split logical key/raw bytes/tmux received key while distinguishing missing, ambiguous, adapter-needed, and delivered states, safe direct key pool and risky/reserved diagnostic-only copy, Projmux-owned Ghostty/Windows Terminal advanced delivery copy, raw escape/CSI-u/xterm modified/UserKey/UserSequence rejection from primary keymap storage, Labs compatibility redirect to the Keybindings root, existing macOS capture/add-key flows, unsafe raw capture, reset behavior, stale guide docs guards, and welcome/runtime footer copy that avoids hardcoded launch-key guides.
|
|
47
|
-
- Darwin native-key focused coverage includes portable physical chord parsing for Alt/Option, Control, Control-Option, Shift, letters/digits/navigation/function keys, `darwin && cgo` synthetic event-to-canonical-chord mapping for Option, Control, shifted letters, function keys, and arrows with unmatched/plain event pass-through, shared `keymap.toml` custom-action loading (including `M-a`), focused tmux client discovery, canonical `send-keys -K -c` dispatch through the existing root key table, native Settings Add key capture winning over terminal text
|
|
47
|
+
- Darwin native-key focused coverage includes portable physical chord parsing for Alt/Option, Control, Control-Option, Shift, letters/digits/navigation/function keys, `darwin && cgo` synthetic event-to-canonical-chord mapping for Option, Control, shifted letters, function keys, and arrows with unmatched/plain event pass-through, shared `keymap.toml` custom-action loading (including `M-a`), focused tmux client discovery, canonical `send-keys -K -c` dispatch through the existing root key table, native Settings Add key capture winning over simultaneous terminal text/error results after ignoring the activation Enter while the non-Darwin path preserves immediate terminal capture, default-on shell startup, `PROJMUX_NATIVE_KEYS=0`/`false` and Settings `[ui].native_keys = false` broker opt-out gates, broker direct no-op behavior, one-time pre-permission consent guidance, broker-only process replacement after an Accessibility wait so fresh macOS permission state is observed without restarting tmux, preservation of the direct no-server shutdown boundary while permission is pending, and an explicit Linux/Windows/no-CGO shell startup no-op boundary.
|
|
48
48
|
- `make test` covers the default picker key ownership across catalog, generated tmux config, terminal adapters, setup probes, and native popup close hints: `Alt-4` opens AI Resume as a guaranteed launch default, while `Alt-7` opens the AI split picker as its editable default.
|
|
49
49
|
- `make test` also covers welcome revisit policy: legacy welcome state remains readable without suppressing shell entry, Enter continues without storing release skip, `s` stores an update skip for the current latest tag when an update is available, source installs show disabled Upgrade guidance, stale update cache refresh is best-effort, Settings > About > Welcome opens a Settings-native viewer without pending state, and shell prompt display does not schedule a redundant attach popup.
|
|
50
50
|
- `make test` also covers transport-dependent app tmux defaults for pane/window navigation (`M-Left`/`M-Right`/`M-Up`/`M-Down` and `M-S-Left`/`M-S-Right`) while keeping visible default chords, allowing additive safe plain aliases that do not store or remove the transport defaults, and no UserKey/CSI-u generated fallback.
|
package/docs/keybindings.md
CHANGED
|
@@ -79,7 +79,9 @@ modified chords from the configured keybinding catalog, never plain-text
|
|
|
79
79
|
typing; physical Option needs the event tap because terminals may convert it
|
|
80
80
|
before tmux can see it; and capture plus tmux injection stay on the local
|
|
81
81
|
machine. The broker then waits for approval and enables the event tap
|
|
82
|
-
automatically
|
|
82
|
+
automatically. While it is waiting, it replaces only its background broker
|
|
83
|
+
process so macOS permission changes are observed with fresh process state; the
|
|
84
|
+
tmux session does not need to be restarted.
|
|
83
85
|
|
|
84
86
|
Native macOS delivery remains on by default. To prevent the broker from
|
|
85
87
|
starting—and therefore prevent the Accessibility prompt—turn off **Native
|
|
@@ -106,8 +108,12 @@ On Darwin, Settings > Keybindings > Add key keeps racing native modified-key
|
|
|
106
108
|
capture against the existing controlling-TTY capture. This lets Press a key
|
|
107
109
|
store a new physical Option, Control, Control-Option, or Shift-modified chord
|
|
108
110
|
before the terminal turns it into text; ordinary keys still use the portable
|
|
109
|
-
TTY path. The
|
|
110
|
-
|
|
111
|
+
TTY path. The activation Enter is ignored as a recorder control, and a short
|
|
112
|
+
Darwin-only preference window lets the native physical chord win when the
|
|
113
|
+
terminal's translated bytes arrive at the same time. Linux, WSL, and Windows
|
|
114
|
+
keep their existing immediate terminal-capture ordering. The Darwin transport
|
|
115
|
+
lifecycle, Accessibility policy, and event mapping are unchanged by the
|
|
116
|
+
Linux/WSL recorder described below.
|
|
111
117
|
|
|
112
118
|
## Discoverable Actions
|
|
113
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projmux",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "tmux project session manager",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/crevissepartners/projmux#readme",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"package:npm:pack": "scripts/package-npm.sh --pack"
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@projmux/linux-x64": "0.8.
|
|
32
|
-
"@projmux/linux-arm64": "0.8.
|
|
33
|
-
"@projmux/darwin-x64": "0.8.
|
|
34
|
-
"@projmux/darwin-arm64": "0.8.
|
|
31
|
+
"@projmux/linux-x64": "0.8.3",
|
|
32
|
+
"@projmux/linux-arm64": "0.8.3",
|
|
33
|
+
"@projmux/darwin-x64": "0.8.3",
|
|
34
|
+
"@projmux/darwin-arm64": "0.8.3"
|
|
35
35
|
}
|
|
36
36
|
}
|