Skip to content

Commit 6fe6c9e

Browse files
committed
docs(CHANGES): Update for command options change
1 parent dbcc116 commit 6fe6c9e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

CHANGES

+25
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,31 @@
6767

6868
- Fix loading of `.yml` files with `tmuxp convert`, thank you @kalixi! (#725)
6969

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+
```python
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+
7095
#### Development
7196

7297
- Run through black + isort with string normalization (#738). This way we can

0 commit comments

Comments
 (0)