You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#![allow(unused)]
|
|
|
|
|
|
|
|
mod application;
|
|
|
|
|
|
|
|
use application::Application;
|
|
|
|
|
|
|
|
use clap::{App, Arg};
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use anyhow::Error;
|
|
|
|
|
|
|
|
static EX: smol::Executor = smol::Executor::new();
|
|
|
|
|
|
|
|
fn main() -> Result<(), Error> {
|
|
|
|
let args = clap::app_from_crate!()
|
|
|
|
.arg(
|
|
|
|
Arg::new("files")
|
|
|
|
.about("Sets the input file to use")
|
|
|
|
.required(true)
|
|
|
|
.multiple(true)
|
|
|
|
.index(1),
|
|
|
|
)
|
|
|
|
.get_matches();
|
|
|
|
|
|
|
|
for _ in 0..num_cpus::get() {
|
|
|
|
std::thread::spawn(move || smol::block_on(EX.run(smol::future::pending::<()>())));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut lsp = helix_lsp::Client::start(&EX, "rust-analyzer", &[]);
|
|
|
|
|
|
|
|
smol::block_on(async {
|
|
|
|
let res = lsp.initialize().await;
|
|
|
|
// Application::new(args).unwrap().run().await;
|
|
|
|
|
|
|
|
loop {}
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|