We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045fbe0 commit 8dd1954Copy full SHA for 8dd1954
CHANGES
@@ -67,6 +67,31 @@
67
68
- Fix loading of `.yml` files with `tmuxp convert`, thank you @kalixi! (#725)
69
70
+#### Internal API
71
+
72
+- #752: Command structure (internal API)
73
74
+ To pave the way for per-command options such as `enter: false` (#52), commands are now a different format:
75
76
+ Before, [`str`](str):
77
78
+ ```python
79
+ "echo hello"
80
+ ```
81
82
+ After, [`dict`](dict):
83
84
85
+ {
86
+ "cmd": "echo hello"
87
+ }
88
89
90
+ This is purely internal. Normal usage should be the same since the
91
+ configuration emits the equivalent result.
92
93
+- #752: Configuration parsing refactorings
94
95
#### Development
96
97
- Run through black + isort with string normalization (#738). This way we can
0 commit comments