tinymist 0.14.18

An integrated language service for Typst.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod fonts;
mod symbols;

mod prelude {

    pub use std::collections::HashMap;

    pub use reflexo_vec2svg::ir::GlyphItem;
    pub use serde::{Deserialize, Serialize};
    pub use serde_json::Value as JsonValue;
    pub use sync_ls::*;
    pub use tinymist_std::error::prelude::*;
    pub use typst::foundations::{Scope, Symbol, Value};

    pub(crate) use crate::ServerState;

    // pub type Svg<'a> = SvgTask<'a, DefaultExportFeature>;
}