diff --git a/yazi-adapter/src/brand.rs b/yazi-adapter/src/brand.rs index efa9331d..712f6066 100644 --- a/yazi-adapter/src/brand.rs +++ b/yazi-adapter/src/brand.rs @@ -22,6 +22,7 @@ pub enum Brand { Neovim, Apple, Urxvt, + Bobcat, } impl Brand { @@ -83,6 +84,7 @@ impl Brand { ("WezTerm", Self::WezTerm), ("foot", Self::Foot), ("ghostty", Self::Ghostty), + ("Bobcat", Self::Bobcat), ]; names.into_iter().find(|&(n, _)| resp.contains(n)).map(|(_, b)| b) } @@ -110,6 +112,7 @@ impl Brand { B::Neovim => &[], B::Apple => &[], B::Urxvt => &[], + B::Bobcat => &[A::Iip, A::Sixel], } }