lex-lsp 0.7.0

Language Server Protocol implementation for the lex format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// LSP-specific features (use diff algorithm, TextEdit, etc.)
pub mod available_actions;
pub mod commands;
pub(crate) mod document_links;
pub mod footnotes;
pub mod formatting;
pub mod table_format;

// Re-export analysis features from lex-analysis
pub use lex_analysis::{
    document_symbols, folding_ranges, go_to_definition, hover, references, semantic_tokens,
};