From 0b6c9b7306f038498c615cb3a23fe8ff8123ecd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E9=9B=85=20=C2=B7=20Misaki=20Masa?= Date: Thu, 3 Aug 2023 14:36:41 +0800 Subject: [PATCH 1/2] docs: add a discussion section --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 755dcba7..2703bddd 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,11 @@ That's relying on the `$TERM`, `$TERM_PROGRAM`, and `$XDG_SESSION_TYPE` variable For instance, if your terminal is Alacritty, which doesn't support displaying images itself, but you are running on an X11/Wayland environment, it will automatically use the "Window system protocol" to display images -- this requires you to have [Überzug++](https://github.com/jstkdng/ueberzugpp) installed. +## Discussion + +- Discord Server (English mainly): https://discord.gg/qfADduSdJu +- Telegram Group (Chinese mainly): https://t.me/yazi_rs + ## TODO - [x] Add example config for general usage, currently please see my [another repo](https://github.com/sxyazi/dotfiles/tree/main/yazi) instead From d5d443031f4bc3adcf7a41f9d51319b25349f50f Mon Sep 17 00:00:00 2001 From: sxyazi Date: Thu, 3 Aug 2023 15:12:19 +0800 Subject: [PATCH 2/2] fix: ambiguous name --- adaptor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adaptor/src/lib.rs b/adaptor/src/lib.rs index 84d907f7..8bf2d3c1 100644 --- a/adaptor/src/lib.rs +++ b/adaptor/src/lib.rs @@ -5,7 +5,7 @@ mod kitty; mod sixel; mod ueberzug; -pub use adaptor::*; +pub use crate::adaptor::*; pub use crate::image::*; pub(self) use iterm2::*; pub(self) use kitty::*;