1
0
Fork 0
forked from wry/wry

config: send server-side capabilities to config

This commit is contained in:
Julian Orth 2024-04-16 17:24:47 +02:00
parent c235f026f0
commit 27f30f8d28
5 changed files with 26 additions and 2 deletions

View file

@ -4,7 +4,9 @@ use {
crate::{
_private::{
bincode_ops,
ipc::{ClientMessage, InitMessage, Response, ServerMessage, WorkspaceSource},
ipc::{
ClientMessage, InitMessage, Response, ServerFeature, ServerMessage, WorkspaceSource,
},
logging, Config, ConfigEntry, ConfigEntryGen, PollableId, WireMode, VERSION,
},
exec::Command,
@ -1178,6 +1180,14 @@ impl Client {
}
}
}
ServerMessage::Features { features } => {
for feat in features {
match feat {
ServerFeature::NONE => {}
_ => {}
}
}
}
}
}