mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-07-18 18:25:00 +00:00
feat: provide package view and local documentation (#596)
* feat: move featured components * feat: provide package view and local documentation * stage * fix: compile error by merged commits
This commit is contained in:
parent
b06447ffe2
commit
78f3893185
70 changed files with 3422 additions and 593 deletions
|
@ -9,14 +9,13 @@
|
|||
|
||||
mod adt;
|
||||
pub mod analysis;
|
||||
pub mod docs;
|
||||
pub mod syntax;
|
||||
pub mod ty;
|
||||
mod upstream;
|
||||
|
||||
use std::sync::Arc;
|
||||
|
||||
pub use analysis::AnalysisContext;
|
||||
use typst::{model::Document as TypstDocument, syntax::Source};
|
||||
pub use upstream::with_vm;
|
||||
|
||||
mod diagnostics;
|
||||
pub use diagnostics::*;
|
||||
|
@ -80,6 +79,10 @@ pub use lsp_features::*;
|
|||
|
||||
mod prelude;
|
||||
|
||||
use std::sync::Arc;
|
||||
|
||||
use typst::{model::Document as TypstDocument, syntax::Source};
|
||||
|
||||
/// The physical position in a document.
|
||||
pub type FramePosition = typst::layout::Position;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue