We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071cb0c commit 8326417Copy full SHA for 8326417
src/main.rs
@@ -61,14 +61,12 @@ fn main() -> io::Result<()> {
61
// Parse query
62
let mut p = Parser::new(&query);
63
let query = p.parse()?;
64
- println!("Got query: {:?}", query);
65
66
// Get the tags from the file and find matches
67
let tagged_locations = tags::from_file(tags_file_path)?;
68
let matcher = Matcher::new(tagged_locations);
69
- println!("Matches: ");
70
for m in matcher.get_matches(query) {
71
- println!("- {}:{} {}", m.file, m.address, m.extra);
+ println!("{}\t{}\t{}", m.file, m.address, m.extra);
72
}
73
74
Ok(())
0 commit comments