vorto 0.4.0

A terminal text editor with tree-sitter syntax highlighting and LSP support
1
2
3
4
5
6
7
8
9
10
11
//! Fuzzy picker + asynchronous source preview cache.
//!
//! `fuzzy` is the matching engine (query / items / selection); `preview`
//! is the worker-backed LRU that supplies syntax-highlighted snapshots
//! for the file under the picker cursor.

mod fuzzy;
mod preview;

pub use fuzzy::{Finder, FuzzyKind, IgnoreOpts};
pub use preview::{PreviewEntry, PreviewLru, spawn_preview_worker};