Skip to content

Releases: b-camphart/obsidian-search

v0.1.1

10 Jan 00:23
Compare
Choose a tag to compare

Adds additional flexibility to the parse function by allowing callers to provide an optional, default filter for empty queries.

v0.1.0

29 Dec 04:09
Compare
Choose a tag to compare

Initial public release

Provides support for most commonly-used search features:

  • Search for file by name: file:search-term
  • Search for file by path: path:search-term
  • Search for file by content: content:search-term (this is the default behavior if no operator is used)
  • Search for file by tag: tag:search-term
  • Negating a search: -file:search-term, file:-search-term
  • Groups: file:(hello world), (file:hello file:world)
  • Exact phrases: "Hello World", file:"Hello World"
  • Regular expressions: /[a-z]/, file:/[a-z]/
  • Property searches: [property-name], [property-name:property-value]
  • the AND and OR operators: work OR personal, file:(work OR personal), tag:(work AND meeting)

... and pretty much any combination therein.