1
0
mirror of https://github.com/go-gitea/gitea synced 2025-02-19 17:37:04 +01:00

Syntax highlight expanded code blobs ()

Expanded code in diffs wasn't being highlighted properly because it wasn't passing the filename to highlighting code.

Fixes 
This commit is contained in:
mrsdizzie 2020-07-12 14:25:05 -04:00 committed by GitHub
parent bac57ab590
commit a60f506dd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -605,7 +605,8 @@ func ExcerptBlob(ctx *context.Context) {
return
}
section := &gitdiff.DiffSection{
Name: filePath,
FileName: filePath,
Name: filePath,
}
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
idxLeft -= chunkSize