feat(new-pane): reduce spiral node-leaf churn #127
No reviewers
Labels
No labels
breaking-change
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
skip-release-notes
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/tmux-mosaic!127
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/spiral-node-leaf-churn"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
spiralstill left the harder node-leafnew-panephases on the generic append path, so the new pane first appeared below the tail and only reached the correct outer branch after the final relayout.Solution
Treat
spiralnode-leaf phases as their own fast path by splitting the tail horizontally into the outer right branch instead of using generic append, and add fast-path plus acceptance coverage for the remaining inward role shift of the previous tail. Closes #113.