Wrap buffer content so it's not hidden to the right

This commit is contained in:
2023-11-02 15:00:58 +01:00
parent d7b23edb8c
commit c837f471e5

View File

@ -122,7 +122,9 @@ impl Component for Home {
.split(layout[1]);
frame.render_widget(
Paragraph::new(buffers.active_buffer().content()).block(Block::new().borders(Borders::ALL)),
Paragraph::new(buffers.active_buffer().content())
.block(Block::new().borders(Borders::ALL))
.wrap(Wrap { trim: true }),
layout[0],
);