Go to file
2022-04-28 22:57:54 +02:00
2022-04-23 15:59:57 +02:00
2022-04-20 18:00:55 +02:00
2022-04-28 22:57:29 +02:00
2022-04-23 17:13:48 +02:00
2022-04-23 17:13:48 +02:00
2022-04-23 17:13:48 +02:00
2022-04-09 10:44:54 +02:00
2022-04-24 08:05:21 +02:00
2022-04-18 16:28:14 +02:00
2022-04-27 17:05:32 +02:00
2022-04-27 17:05:32 +02:00
2022-04-28 15:10:51 +02:00
2022-04-23 22:33:41 +02:00
2022-04-27 17:05:32 +02:00

Omnisearch for Obsidian

Active Development

Omnisearch is a search engine that "just works". Type what you're looking for, and it will instantly show you the most relevant results.

Under the hood, it uses the excellent MiniSearch library.

Features

  • Keyboard-centric, you never have to use your mouse
  • Automatic document scoring using the BM25 algorithm
    • The relevance of a document against a query depends on the number of times the query terms appear in the document, its filename, and its headings
  • Instant search results, with highlighting
  • Fuzzy/partial search, resistance to typos
  • In-file search to quickly skim multiple results in a single note

Installation

Omnisearch is available on the official Community Plugins repository.

You can also install it through BRAT for the future beta releases.

Usage

There are 2 ways to use Omnisearch:

Omnisearch's core feature, accessible with the Command Palette "Omnisearch: Vault search". This modal searches through your vault and returns the most relevant notes first. The notes that contain the query terms in their filename or headings are weighted higher than the others.

If you need to list all the matches of a single note, you can do so by using alt+enter to open the In-File Search.

Also accessible through the command palette "Omnisearch: In-file search". This modal searches through the active note's content and lists the results.

Customization

There are several CSS classes you can use to customize the appearance of Omnisearch.

.omnisearch-modal
.omnisearch-result
.omnisearch-result__title
.omnisearch-result__counter
.omnisearch-result__body
.omnisearch-highlight

For example, if you'd like the usual yellow highlight on search matches, you can add this code inside a CSS snippet file:

.omnisearch-highlight {
    color: var(--text-normal);
    background-color: var(--text-highlight-bg);
}

LICENSE

Omnisearch is licensed under GPL-3.

Description
No description provided
Readme GPL-3.0 7.4 MiB
Languages
TypeScript 74.4%
Svelte 19.4%
JavaScript 4.9%
CSS 1.3%