mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-28 20:05:50 +03:00
ee16a4b8c3
* prototype * folder selection ui in session manager * overhaul strider * scan folder host command * get strider to work from the cli and some cli pipe fixes * some ux improvements to strider * improve strider's ui * make strider ui responsive * make session-manager new ui parts responsive * fix tests * style(fmt): rustfmt
17 lines
517 B
Rust
17 lines
517 B
Rust
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct PluginIds {
|
|
#[prost(int32, tag = "1")]
|
|
pub plugin_id: i32,
|
|
#[prost(int32, tag = "2")]
|
|
pub zellij_pid: i32,
|
|
#[prost(string, tag = "3")]
|
|
pub initial_cwd: ::prost::alloc::string::String,
|
|
}
|
|
#[allow(clippy::derive_partial_eq_without_eq)]
|
|
#[derive(Clone, PartialEq, ::prost::Message)]
|
|
pub struct ZellijVersion {
|
|
#[prost(string, tag = "1")]
|
|
pub version: ::prost::alloc::string::String,
|
|
}
|