Add --wrap-word-lookback for word-aware line wrapping#2163
Open
igrmk wants to merge 1 commit into
Open
Conversation
Introduces an opt-in setting that scans the last N columns before the column-based wrap point and prefers a more natural break (whitespace if present, otherwise the nearest non-word character) to avoid splitting mid-word. Defaults to 0 (disabled), preserving the existing column-exact wrap. The wrap is implemented as a two-pass walk over the line: pass 1 decides all cut points from the underlying characters alone (independent of how the input was split into styled segments), pass 2 slices the segments at those cuts. This makes the per-line wrap deterministic across the syntax and diff style streams.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #2161 (could not be reopened due to force-push).
Opt-in setting that backs the wrap point up to N columns in search of a more natural break (whitespace if present, else the nearest non-word character) instead of slicing through the middle of a word. Defaults to
0(disabled), so existing output is unchanged.Before (
--wrap-max-lines=3):After (
--wrap-max-lines=3 --wrap-word-lookback=30):