Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add last_row in get_text_from_semantic_region #6248

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua-api-crates/mux/src/pane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl MuxPane {
let last_idx = line.physical_lines.len().saturating_sub(1);
for (idx, phys) in line.physical_lines.iter().enumerate() {
let this_row = line.first_row + idx as StableRowIndex;
if this_row >= first_row && this_row < last_row {
if this_row >= first_row && this_row <= last_row {
let last_phys_idx = phys.len().saturating_sub(1);

let cols = cols_for_row(&zone, this_row);
Expand Down
Loading