mirror of
1
Fork 0

git-grep: update comment

It was outdated and missing detail.
This commit is contained in:
Radosław Piliszek 2024-08-10 16:41:12 +02:00
parent a83f5cd0f0
commit 7dd7cc7ebc
1 changed files with 4 additions and 3 deletions

View File

@ -53,13 +53,14 @@ func GrepSearch(ctx context.Context, repo *Repository, search string, opts GrepO
}() }()
/* /*
The output is like this ( "^@" means \x00): The output is like this ("^@" means \x00; the first number denotes the line,
the second number denotes the column of the first match in line):
HEAD:.air.toml HEAD:.air.toml
6^@bin = "gitea" 6^@8^@bin = "gitea"
HEAD:.changelog.yml HEAD:.changelog.yml
2^@repo: go-gitea/gitea 2^@10^@repo: go-gitea/gitea
*/ */
var results []*GrepResult var results []*GrepResult
cmd := NewCommand(ctx, "grep", cmd := NewCommand(ctx, "grep",