Port to gpui1

This commit is contained in:
Kirill Bulatov 2023-12-11 12:28:14 +02:00
parent 3694265b6b
commit 55374e8ac0
7 changed files with 263 additions and 5 deletions

View file

@ -33,7 +33,7 @@ pub fn lsp_formatting_options(tab_size: u32) -> lsp::FormattingOptions {
}
#[async_trait(?Send)]
pub(crate) trait LspCommand: 'static + Sized {
pub trait LspCommand: 'static + Sized {
type Response: 'static + Default + Send;
type LspRequest: 'static + Send + lsp::request::Request;
type ProtoRequest: 'static + Send + proto::RequestMessage;