feat(new-pane): reduce master-stack transition churn #126
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!126
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/master-stack-transition-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
master-stackstill fell back to generic append whenn = m > 1, so the first stack pane was born by splitting a master instead of appearing in the future stack branch.Solution
Add an all-masters
master-stacknew-panepath forn = m > 1: split the tail directly forleftandtop, split the first master then bubble to the tail for mirroredrightandbottom, and add fast-path plus acceptance coverage for the remaining topology change. This keeps the mirrored1 -> 2policy tradeoff out of scope for#114. Closes #112.