search

package
v0.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2026 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Match

type Match struct {
	FilePath    string `json:"file_path"`
	LineNumber  uint64 `json:"line_number"`
	LineContent string `json:"line_content"`
}

Match represents a single search match.

func CodeSearch

func CodeSearch(repoPath, query string, caseSensitive bool) ([]Match, error)

CodeSearch performs a search using ripgrep for a given query in a repository.

type RipgrepMatch

type RipgrepMatch struct {
	Type string `json:"type"`
	Data struct {
		Path       RipgrepText `json:"path"`
		Lines      RipgrepText `json:"lines"`
		LineNumber uint64      `json:"line_number"`
	} `json:"data"`
}

RipgrepMatch represents the structure of a JSON line from ripgrep's output.

type RipgrepText

type RipgrepText struct {
	Text string `json:"text"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL