onoma 0.0.4

A fast, language-agnostic semantic symbol indexer and typo-resistant fuzzy finder, enabling real-time search across virtually unlimited code symbols without the need for language servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tooling for fuzzy matching and scoring symbols from indexes in real-time.

pub(crate) mod constant;
mod database_backed_resolver;
mod scoring;
mod types;
mod utils;
mod weight;

pub use database_backed_resolver::DatabaseBackedResolver;

pub use types::{Context, Resolver};