You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(parity-tmuxinator): Add synchronize deprecation and pane_title_format default
why: tmuxinator source confirms synchronize true/before is deprecated.
what:
- Note synchronize true/before deprecated in project.rb:21-29
- Add context that import should still honor original semantics per value
- Document pane_title_format default and pane_title_position default
Note: tmuxinator deprecates `synchronize: true` and `synchronize: before` in favor of `synchronize: after`. The deprecation message says `before` was the original behavior but `after` is the recommended pattern. Import should still honor the original semantics of each value.
78
80
79
81
**Gap**: tmuxp has no `synchronize` config key. Users would need to set `synchronize-panes on` via `options` manually, but this doesn't support the before/after distinction.
80
82
@@ -86,8 +88,8 @@ windows:
86
88
87
89
```yaml
88
90
enable_pane_titles: true
89
-
pane_title_position: top
90
-
pane_title_format: "#{pane_index}: #{pane_title}"
91
+
pane_title_position: top # default: "top"
92
+
pane_title_format: "#{pane_index}: #{pane_title}" # this is the default format
0 commit comments