Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
docs(CHANGES): Update for command options change
  • Loading branch information
tony committed Mar 13, 2022
commit 8dd1954e9ef14f9bb8450f2e4f1689d7ac1466d2
25 changes: 25 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,31 @@

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

#### Internal API

- #752: Command structure (internal API)

To pave the way for per-command options such as `enter: false` (#52), commands are now a different format:

Before, [`str`](str):

```python
"echo hello"
```

After, [`dict`](dict):

```python
{
"cmd": "echo hello"
}
```

This is purely internal. Normal usage should be the same since the
configuration emits the equivalent result.

- #752: Configuration parsing refactorings

#### Development

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