Skip to content
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions docs/integration/extensions/pixi_diff.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ You can view this generated markdown file in your terminal using [`md-tui`](http
```bash
mdt diff.md
```

You can also view the markdown file directly from stdin using [`md-tui`](https://github.com/henriklovhaug/md-tui).

```bash
pixi diff <(git show HEAD~20:pixi.lock) pixi.lock | pixi diff-to-markdown | mdt
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get this error on zsh

Custom { kind: Other, error: "Failed to initialize input reader" }
Exception ignored on flushing sys.stdout:
BrokenPipeError: [Errno 32] Broken pipe

It works if I do

pixi diff <(git show HEAD~20:pixi.lock) pixi.lock | pixi diff-to-markdown > test.md 
mdt test.md

Copy link
Collaborator Author

@pavelzw pavelzw Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

which mdt version do you use? 0.9.0 is not out yet on conda-forge, hopefully in ~30min

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

try again @ruben-arts

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect!

```