update-20260103b--impl-tmux-worktree-cd--claude#175
Open
tamakiii wants to merge 1 commit intoupdate-20260103bfrom
Open
update-20260103b--impl-tmux-worktree-cd--claude#175tamakiii wants to merge 1 commit intoupdate-20260103bfrom
tamakiii wants to merge 1 commit intoupdate-20260103bfrom
Conversation
⏺ Created bin/tmux-worktree-cd. The script:
1. Resolves worktree from name or path via git worktree list
2. Sends program-specific commands to all panes:
- Shells (zsh, bash, fish, sh): cd <path>
- Helix (hx): Escape + :cd <path> + Enter
- Claude Code (claude): /cd <path>
- Others: skipped (can add mappings at top of script)
Usage:
tmux-worktree-cd feature-branch
tmux-worktree-cd /path/to/worktree
To test, try running it from one of your panes while you have multiple panes open. The PROGRAM_COMMANDS associative array at the top of the script is where you can add more program mappings.
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
⏺ Created bin/tmux-worktree-cd. The script:
- Shells (zsh, bash, fish, sh): cd
- Helix (hx): Escape + :cd + Enter
- Claude Code (claude): /cd
- Others: skipped (can add mappings at top of script)
Usage:
tmux-worktree-cd feature-branch
tmux-worktree-cd /path/to/worktree
To test, try running it from one of your panes while you have multiple panes open. The PROGRAM_COMMANDS associative array at the top of the script is where you can add more program mappings.