onoma 0.0.11

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
[![Coverage](https://api.coveragerobot.com/v1/graph/github/ryanmab/onoma/badge.svg?token=b956f921c09c15fb4d1aa40f16748a4d27ad63b8f92c7fbe51)](https://coveragerobot.com)
[![Crates.io Version](https://img.shields.io/crates/v/onoma)](https://crates.io/crates/onoma)
![Crates.io Total Downloads](https://img.shields.io/crates/d/onoma)
[![docs.rs](https://img.shields.io/docsrs/onoma)](https://docs.rs/onoma)
[![Build](https://github.com/ryanmab/onoma/actions/workflows/build.yml/badge.svg)](https://github.com/ryanmab/onoma/actions/workflows/build.yml)
![GitHub License](https://img.shields.io/github/license/ryanmab/onoma)

> [!WARNING]
> Onoma and all of its editor integrations are still in early development. Expect bugs, breaking changes, and other
> general hiccups.

<!-- cargo-rdme start -->

# Onoma

> **ὄνομα***Onoma* (pronounced `OH-no-ma`) is Greek for **“name”**, signifying not just a
> label, but the *essence* or character of a thing.

Onoma is a fast, language-agnostic semantic symbol indexer and fuzzy finder, which supports real-time
cross-language symbol matching, without needing a full language server and without applying limits
to workspace-wide queries.

It achieves this through incremental indexing with Tree-sitter and filesystem events,
and includes typo-resistant fuzzy matching with a scoring system to prioritise relevant results.

While Onoma can be used as a standalone crate, its primary goal is to act as an editor-agnostic
indexer and resolver which can be cross-compiled and integrated into text editors and IDEs.

## Supported Languages

- Rust (`.rs`)
- Go (`.go`)
- Lua (`.lua`)
- Clojure (`.clj`)
- TypeScript (`.ts` and `.tsx`) / JavaScript (`.js` and `.jsx`)
- Python (`.py`)

## Usage

### 1. Editor Integrations

> _Feel free to [open an issue]https://github.com/ryanmab/onoma/issues with ideas for additional
> editor integrations._

![onoma.nvim](https://github.com/user-attachments/assets/045c76ae-1f2e-4954-80fc-2773a16f393c)

Currently, Onoma is integrated with:

1. **Neovim**, using [onoma.nvim]https://github.com/ryanmab/onoma.nvim with Snacks Picker

### 2. Standalone Crate

```toml
[dependencies]
onoma = "0.0.11"
```

#### Documentation

Full documentation is available on [docs.rs](https://docs.rs/onoma/latest/onoma/).

## Contributing

Contributions are welcome!

The core Onoma backend should contain all editor-agnostic functionality, including improvements
to indexing and fuzzy matching.

For editor-specific features or changes to bindings for a particular editor, please submit pull requests
in the respective editor repositories listed above.

### Testing

The tests can be run with:

```sh
cargo test
```

## Acknowledgments

- [fff.nvim]https://github.com/dmtrKovalenko/fff.nvim/tree/main for inspiring the semantic fuzzy finder design in Onoma.
- [snacks.nvim]https://github.com/folke/snacks.nvim/tree/main for the excellent picker frontend.
- [frizbee]https://github.com/saghen/frizbee for the high-performance SIMD implementation of fuzzy matching.

<!-- cargo-rdme end -->