Skip to content

Commit 3bb43ab

Browse files
committed
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
1 parent d666876 commit 3bb43ab

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

notes/parity-tmuxinator.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tmuxinator Parity Analysis
22

3-
*Last updated: 2026-03-06*
3+
*Last updated: 2026-03-07*
44
*Tmuxinator version analyzed: 3.3.7 (supports tmux 1.5–3.6a)*
55
*tmuxp version: 1.64.0*
66

@@ -73,8 +73,10 @@ windows:
7373
- vim
7474
```
7575

76-
- `synchronize: true` / `synchronize: before` — enable pane sync before running pane commands
77-
- `synchronize: after` — enable pane sync after running pane commands
76+
- `synchronize: true` / `synchronize: before` — enable pane sync before running pane commands (**deprecated** in tmuxinator `project.rb:21-29`)
77+
- `synchronize: after` — enable pane sync after running pane commands (recommended)
78+
79+
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.
7880

7981
**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.
8082

@@ -86,8 +88,8 @@ windows:
8688

8789
```yaml
8890
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
9193
windows:
9294
- editor:
9395
panes:

0 commit comments

Comments
 (0)