From 1add427a2bcace191231dffe5456851974979d4f Mon Sep 17 00:00:00 2001 From: Raphael Amorim Date: Sat, 11 Apr 2026 08:30:23 +0200 Subject: [PATCH] use kitty image protocol --- README.md | 2 +- yazi-adapter/src/adapters.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e1f46cea..45a94c40 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Yazi is currently in heavy development, expect breaking changes. | [Warp](https://www.warp.dev) (macOS/Linux only) | [Inline images protocol][iip] | ✅ Built-in | | [Tabby](https://github.com/Eugeny/tabby) | [Inline images protocol][iip] | ✅ Built-in | | [VSCode](https://github.com/microsoft/vscode) | [Inline images protocol][iip] | ✅ Built-in | -| [Rio](https://github.com/raphamorim/rio) | [Inline images protocol][iip] | ❌ Rio renders images at incorrect sizes | +| [Rio](https://github.com/raphamorim/rio) | [Kitty unicode placeholders][kgp] | ✅ Built-in | | [Black Box](https://gitlab.gnome.org/raggesilver/blackbox) | [Sixel graphics format][sixel] | ✅ Built-in | | [Bobcat](https://github.com/ismail-yilmaz/Bobcat) | [Inline images protocol][iip] | ✅ Built-in | | X11 / Wayland | Window system protocol | ☑️ [Überzug++][ueberzug] required | diff --git a/yazi-adapter/src/adapters.rs b/yazi-adapter/src/adapters.rs index 36b50e71..77912c41 100644 --- a/yazi-adapter/src/adapters.rs +++ b/yazi-adapter/src/adapters.rs @@ -33,7 +33,7 @@ impl From for Adapters { B::Ghostty => vec![A::Kgp], B::Microsoft => vec![A::Sixel], B::Warp => vec![A::Iip, A::KgpOld], - B::Rio => vec![A::Iip, A::Sixel], + B::Rio => vec![A::Kgp], B::BlackBox => vec![A::Sixel], B::VSCode => vec![A::Iip, A::Sixel], B::Tabby => vec![A::Iip, A::Sixel],