Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(diff) Won't highlight hunk headers with a single number instead of a number pair #4227

Open
sushicw opened this issue Mar 19, 2025 · 1 comment · May be fixed by #4228
Open

(diff) Won't highlight hunk headers with a single number instead of a number pair #4227

sushicw opened this issue Mar 19, 2025 · 1 comment · May be fixed by #4228
Labels
bug help welcome Could use help from community language

Comments

@sushicw
Copy link

sushicw commented Mar 19, 2025

Describe the issue
Diff is looking for hunk header that looks like this:

@@ -<num>,<num> +<num>,<num> @@

However, it's OK to omit the second number of each pair in some cases, see https://www.gnu.org/software/diffutils/manual/html_node/Detailed-Unified.html

If a hunk contains just one line, only its start line number appears. Otherwise its line numbers look like ‘start,count’. An empty hunk is considered to start at the line that follows the hunk.

If a hunk and its context contain two or more lines, its line numbers look like ‘start,count’. Otherwise only its end line number appears. An empty hunk is considered to end at the line that precedes the hunk.

So these should also be valid, for example:

@@ -<num> +<num> @@
@@ -<num>,<num> +<num> @@

Which language seems to have the issue?
This is using diff.

Are you using highlight or highlightAuto?

highlight

Sample Code to Reproduce

See above

Expected behavior

The above examples should also be highlighted as hljs-meta.

Additional context

I can see the exact regexp causing this at

/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,

It can probably be simply replaced with this:

/^@@ +-\d+(?:,\d+)? +\+\d+(?:,\d+)? +@@/
@sushicw sushicw added bug help welcome Could use help from community language labels Mar 19, 2025
@sushicw
Copy link
Author

sushicw commented Mar 19, 2025

#4228

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug help welcome Could use help from community language
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant