hx-lsp 0.2.11

One LSP server support snippets and actions for helix editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use hx_lsp::{serve::Server, variables};

#[tokio::main(flavor = "current_thread")]
async fn main() {
    if let Some(arg) = std::env::args().nth(1) {
        if arg.eq("--version") {
            let version = env!("CARGO_PKG_VERSION");
            eprintln!("version: {version}");
        }
    }
    variables::init();
    Server::run().await;
}