aether-lspd 0.1.11

LSP daemon for sharing language servers across multiple agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;

#[derive(Parser)]
#[command(name = "aether-lspd")]
#[command(about = "LSP daemon for sharing language servers across multiple agents")]
struct Args {
    #[command(flatten)]
    inner: aether_lspd::LspdArgs,
}

fn main() {
    let args = Args::parse();
    if let Err(e) = aether_lspd::run_lspd(args.inner) {
        eprintln!("Error: {e}");
        std::process::exit(1);
    }
}