Skip to main content

solar_config/
lsp.rs

1/// Options for running the LSP server.
2#[derive(Default)]
3#[cfg_attr(feature = "clap", derive(clap::Args))]
4pub struct LspArgs {
5    /// Use standard input/output for LSP transport.
6    ///
7    /// This is the default, and ignored.
8    /// This argument is recommended by the LSP specification.
9    #[cfg_attr(feature = "clap", arg(long, hide = true))]
10    pub stdio: bool,
11}