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.
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"`
}
Click to show internal directories.
Click to hide internal directories.