We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce:
seq 100 | less -N --no-number-headers
10j
--header=1
Expected result: First lines on the screen should be
11 1 12 2 13 3 14
Actual result: First lines on the screen are
10 11 11 12 12 13 13 14
The text was updated successfully, but these errors were encountered:
Fix bug with --no-number-headers when header is not at start of file.
47a7b8e
Calculation in vlinenum was assuming header starts at position 0. Related to #566.
Fixed in 47a7b8e in the post659 branch.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
seq 100 | less -N --no-number-headers
10j
--header=1
Expected result:
First lines on the screen should be
Actual result:
First lines on the screen are
The text was updated successfully, but these errors were encountered: