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:
Myriad-Dreamin 2024-04-05 17:22:56 +08:00 committed by GitHub
parent 703c8b4c1d
commit c2f2b214a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 469 additions and 25 deletions

View file

@ -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 {