This allows users to control whether or not they want to see the "workspace loaded" notification. This is done on the server side using InitializationOptions which are provided by the client. By default show_workspace_loaded is true, meaning the notification is sent.
13 lines
318 B
Rust
13 lines
318 B
Rust
mod caps;
|
|
mod cargo_target_spec;
|
|
mod conv;
|
|
mod main_loop;
|
|
mod markdown;
|
|
mod project_model;
|
|
pub mod req;
|
|
pub mod init;
|
|
mod server_world;
|
|
|
|
pub type Result<T> = ::std::result::Result<T, ::failure::Error>;
|
|
pub use crate::{caps::server_capabilities, main_loop::main_loop, main_loop::LspError, init::InitializationOptions};
|