We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1394c commit 342d5e5Copy full SHA for 342d5e5
lib/Terminal/Widgets/WrappableBuffer.rakumod
@@ -407,8 +407,14 @@ does Terminal::Widgets::SpanBuffer {
407
# Attempt to backfill all short lines (except the last) in
408
# order to create a mostly-rectangular block of graphemes
409
410
- # XXXX: STUB, just hand back hard lines
411
- $hard
+ # Run the standard core span loop for Grapheme modes
+ # for each hard line in the LineGroup
412
+ grapheme-span-loop($_) for @$hard;
413
+
414
+ # Add last partial line if any, ignoring a prefix-only line
415
+ @wrapped.push(@partial) unless $just-finished;
416
417
+ @wrapped
418
}
419
when WordFill {
420
# Attempt to backfill all short lines (except the last) with
0 commit comments