Draft an expand macro recusively command

This commit is contained in:
Kirill Bulatov 2023-12-11 02:29:32 +02:00
parent db8e58b888
commit e3fc810b3d
13 changed files with 216 additions and 11 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 + Send {
pub trait LspCommand: 'static + Sized + Send {
type Response: 'static + Default + Send;
type LspRequest: 'static + Send + lsp::request::Request;
type ProtoRequest: 'static + Send + proto::RequestMessage;