- Yazi Linux Edition running on WSL
-
-
-Limited by ConPTY, the Windows edition has had to implement many workarounds, which are not perfect.
-
-However, if you run Yazi in WSL, you can experience perfect image previews using `wezterm ssh`.
-[WezTerm](https://wezfurlong.org/wezterm/) is an excellent terminal that can bypass the limitations of ConPTY through its SSH feature, and it's currently the only terminal that supports this approach.
-
-You need to install `sshd` in WSL and start it:
-
-```sh
-sudo apt install openssh-server
-sudo service ssh restart
-```
-
-Then, on the host machine, connect to WSL via SSH:
-
-```sh
-wezterm ssh 127.0.0.1
-```
-
-That's it! you can now get Yazi's image preview working properly.
-
-
-
-
-Before [Add `CSI 14 t` sequence support](https://github.com/crossterm-rs/crossterm/pull/810) is merged, it is not possible to obtain the actual width and height of the terminal.
-
-Therefore, the Windows edition currently uses `preview.max_width` and `preview.max_height` as the image size, which is specified by the user in the `yazi.toml` .
-
## Why do my icons shrink in [kitty](https://sw.kovidgoyal.net/kitty/), and enlarge when scrolling?
TL;DR: Use a theme for Yazi, https://github.com/yazi-rs/themes
diff --git a/docs/image-preview.md b/docs/image-preview.md
index 7786aefd..6513cc92 100644
--- a/docs/image-preview.md
+++ b/docs/image-preview.md
@@ -60,6 +60,28 @@ Currently, only the following two terminals support displaying images on Windows
- WezTerm
- Mintty (Git Bash, which comes with Git for Windows)
+## Windows with WSL users
+
+Limited by ConPTY, the Windows edition has had to implement many workarounds, which are not perfect.
+
+However, if you run Yazi in WSL, you can experience perfect image previews using `wezterm ssh`.