fix: explicitly cd to project dir in every non-first pane - #4
Merged
Conversation
Panes created after pane 1 relied on Ghostty's directory inheritance, which fails when pane 1 runs a foreground process (e.g. claude, npm run dev). Now every non-first pane gets an explicit cd before its command.
Owner
Author
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. 🤖 Generated with Claude Code |
…on layer Prepend cd <dir> to every command in zsh before passing to AppleScript, making each pane command self-contained. Removes 6 fragile cd-injection blocks from AppleScript that depended on clipboard timing delays.
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
claude,npm run dev) — Ghostty can't resolve CWD from a busy shell, so splits start in~cd /project && clearbefore its command, using a separate paste step (not concatenated) to preserve user commands exactlylayout-dynamic.applescriptandlayout-hybrid.applescriptWhat changed
Phase 2 anchor panes (row 2+ in multi-row layouts):
cd && clearwhenspatialIdx > 1(pane 1 already has cd)Phase 2 horizontal split panes (all
Cmd+Dsplits):cd && clearafter every split — always non-first by definitionTiming impact
+0.3s per non-first pane. For a quad layout (4 panes): +0.9s total on ~6s setup.
Test plan
./tests/test-layouts.zsh— 33/33 pass--dry-rununaffected (exits before AppleScript)gpane <project>with duo layout — verify pane 2 starts in project dir