mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-11-24 21:19:37 +00:00
feat: initialize telescope mode previewing (#164)
* feat: initialize telescope mode previewing * dev: add notes * dev: configure and disable hovering periscope * dev: update snapshot
This commit is contained in:
parent
703c8b4c1d
commit
c2f2b214a2
17 changed files with 469 additions and 25 deletions
|
|
@ -38,6 +38,8 @@ pub(crate) mod hover;
|
|||
pub use hover::*;
|
||||
pub(crate) mod inlay_hint;
|
||||
pub use inlay_hint::*;
|
||||
pub(crate) mod jump;
|
||||
pub use jump::*;
|
||||
pub(crate) mod rename;
|
||||
pub use rename::*;
|
||||
pub(crate) mod selection_range;
|
||||
|
|
@ -64,6 +66,9 @@ pub use lsp_features::*;
|
|||
|
||||
mod prelude;
|
||||
|
||||
/// The physical position in a document.
|
||||
pub type FramePosition = typst::layout::Position;
|
||||
|
||||
/// A compiled document with an self-incremented logical version.
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct VersionedDocument {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue