feat: keyboard UX improvements and session management#60
Closed
aakhter wants to merge 5 commits intoArk0N:masterfrom
Closed
feat: keyboard UX improvements and session management#60aakhter wants to merge 5 commits intoArk0N:masterfrom
aakhter wants to merge 5 commits intoArk0N:masterfrom
Conversation
Right-click a tab to add custom description text while preserving the auto-generated w<N>-caseName prefix. Prefix shown muted, suffix shown bold in tabs and modal. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The previous approach sent \n through the WebSocket -> session.write() path, but tmux didn't pass it through to Claude Code correctly. The new approach uses a server-side /send-key endpoint that calls `tmux send-keys -H 0a` to inject a raw line feed byte directly into the tmux pane. Also disabled the Ctrl+Enter -> quickStart() shortcut that was intercepting the key before the terminal handler. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Alt+digit in the document capture-phase handler switches to the Codeman session at that index. The terminal custom key handler returns false for Alt+digit so xterm.js doesn't consume the event. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Ark0N
added a commit
that referenced
this pull request
Apr 11, 2026
Cherry-picked from PR #60 (keyboard UX) and PR #61 (file download): - Alt+1-9 session switching - Disable Ctrl+K (too easy to trigger accidentally) - Session rename with prefix preservation (w1-case: description) - Shift+Enter / Ctrl+Enter multiline input via tmux send-keys -H - Android virtual keyboard fix for non-composition input - File download button in browser file explorer (?download=true) Dropped from PR #60: stale package-lock.json, upload popup (missing upload.html) Dropped from PR #61: standalone /api/download endpoint (arbitrary fs access) Fixed from PR #60: execFileSync replaced with async execFile Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Owner
|
Thanks for the contribution! Cherry-picked the following into master (f3cbe9b):
Not included:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
send-keys -H 0x0afor reliable newline injectionTest plan