mq-lsp 0.5.8

Language Server Protocol implementation for mq query language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::server::LspConfig;

pub mod capabilities;
pub mod completions;
pub mod document_symbol;
pub mod execute_command;
pub mod goto_definition;
pub mod hover;
pub mod references;
pub mod semantic_tokens;
pub mod server;

#[tokio::main]
async fn main() {
    server::start(LspConfig::default()).await;
}