Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

ex: fix printing of line number when the 's' command is used with the 'c' flag and the number option is set.#115

Closed
millert wants to merge2 commits intolichray:mainfrommillert:missing_number

Conversation

millert
Copy link
Contributor

Currently, given the line:

Five women came to the party.

issuing the command in ex when the number option is enabled (the output is fine if number is not enabled):

:s/men/MEN/c

will display:

Five women came to the party.               ^^^[ynq]

The confirmation line is indented properly for output when the number option is enabled, but the line above it lacks the expected line number. The output should be, e.g.:

     1  Five women came to the party.               ^^^[ynq]

The line number is also missing when the line is reprinted after the confirmation prompt. With the changes in this PR, the output becomes:

:set number:s/men/MEN/c     1  Five women came to the party.               ^^^[ynq]n     1  Five women came to the party.

This matches historic ex behavior and appears to match POSIX, though it is not 100% clear on this specific issue.

…set.The confirmation line already has the appropriate indentation butthe underlined section doesn't line up with the matched text becausethe line it refers to is missing the line number.
@lichray
Copy link
Owner

It's indeed confusing. Thanks for the change!

johnsonjh added a commit to johnsonjh/OpenVi that referenced this pull requestFeb 26, 2023
* When using the `s` command with the `c` flag in ex mode,  the confirmation line is properly indented to make room  for the line number, but the autoprint line doesn't  include the line number; the two lines mismatch.* The confirmation line already has the appropriate indentation  but the underlined section doesn't line up with the matched  text because the line it refers to is missing the line number.* Patch via `nvi2` from millert@* Seelichray/nvi2#115
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

2 participants
@millert@lichray

[8]ページ先頭

©2009-2025 Movatter.jp