summaryrefslogtreecommitdiff
path: root/support/texlab/src/lib.rs
blob: 0441c1a1d7e21dd123613ba7c84289e454fd56fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
mod capabilities;
#[cfg(feature = "citation")]
pub mod citation;
mod client;
pub mod component_db;
mod config;
mod context;
pub mod diagnostics;
mod dispatch;
pub mod distro;
pub mod features;
mod label;
mod lang_data;
mod language;
mod line_index;
mod line_index_ext;
mod options;
mod range;
mod req_queue;
mod server;
pub mod syntax;
mod uri;
mod workspace;

pub use self::{
    capabilities::ClientCapabilitiesExt,
    context::ServerContext,
    label::*,
    lang_data::*,
    language::DocumentLanguage,
    line_index::{LineCol, LineColUtf16, LineIndex},
    line_index_ext::LineIndexExt,
    options::*,
    range::RangeExt,
    server::Server,
    uri::Uri,
    workspace::*,
};