Fix bug in how vertical and horizontal offsets are calculated.

This commit is contained in:
Nathan Vegdahl 2020-02-02 00:14:08 +09:00
parent 4e1bdc412c
commit 8a49ed74c5
2 changed files with 18 additions and 14 deletions

View File

@ -76,14 +76,15 @@ pub trait LineFormatter {
// TODO: handle rounding modes // TODO: handle rounding modes
// TODO: do this with bidirectional line iterator // TODO: do this with bidirectional line iterator
// Get the line and block index of the given index // Get the line and char index within that line.
let (mut line_i, mut col_i) = buf.index_to_line_col(char_idx); let (mut line_i, mut col_i) = buf.index_to_line_col(char_idx);
let mut line = buf.get_line(line_i); let mut line = buf.get_line(line_i);
// Find the right block in the line, and the index within that block // Get the block information for the char offset in the line.
let (line_block, block_range) = block_index_and_range(&line, col_i); let (line_block, block_range) = block_index_and_range(&line, col_i);
let col_i_adjusted = col_i - block_range.0; let col_i_adjusted = col_i - block_range.0;
// Get the 2d coordinates within the block.
let (mut y, x) = self.index_to_v2d( let (mut y, x) = self.index_to_v2d(
RopeGraphemes::new(&line.slice(block_range.0..block_range.1)), RopeGraphemes::new(&line.slice(block_range.0..block_range.1)),
col_i_adjusted, col_i_adjusted,
@ -143,10 +144,11 @@ pub trait LineFormatter {
// Next, convert the resulting coordinates back into buffer-wide // Next, convert the resulting coordinates back into buffer-wide
// coordinates. // coordinates.
let (block_start, block_end) = char_range_from_block_index(&line, block_index); let (block_start, block_end) = char_range_from_block_index(&line, block_index);
let block_len = block_end - block_start;
let block_slice = line.slice(block_start..block_end); let block_slice = line.slice(block_start..block_end);
let block_col_i = min( let block_col_i = min(
self.v2d_to_index(RopeGraphemes::new(&block_slice), (y, x), rounding), self.v2d_to_index(RopeGraphemes::new(&block_slice), (y, x), rounding),
LINE_BLOCK_LENGTH - 1, block_len - 1.min(block_len),
); );
col_i = block_start + block_col_i; col_i = block_start + block_col_i;
@ -163,14 +165,15 @@ pub trait LineFormatter {
horizontal: usize, horizontal: usize,
rounding: RoundingBehavior, rounding: RoundingBehavior,
) -> usize { ) -> usize {
// Get the line info.
let (line_i, col_i) = buf.index_to_line_col(char_idx); let (line_i, col_i) = buf.index_to_line_col(char_idx);
let line = buf.get_line(line_i); let line = buf.get_line(line_i);
// Find the right block in the line, and the index within that block // Get the right block within the line.
let (_, block_range) = block_index_and_range(&line, col_i); let (block_i, block_range) = block_index_and_range(&line, col_i);
let col_i_adjusted = col_i - block_range.0; let col_i_adjusted = col_i - block_range.0;
// Calculate the horizontal position // Calculate the horizontal position.
let (v, _) = self.index_to_v2d( let (v, _) = self.index_to_v2d(
RopeGraphemes::new(&line.slice(block_range.0..block_range.1)), RopeGraphemes::new(&line.slice(block_range.0..block_range.1)),
col_i_adjusted, col_i_adjusted,
@ -180,13 +183,14 @@ pub trait LineFormatter {
(v, horizontal), (v, horizontal),
(RoundingBehavior::Floor, rounding), (RoundingBehavior::Floor, rounding),
); );
let mut new_col_i = block_range.0 + min(block_col_i, LINE_BLOCK_LENGTH - 1); let new_col_i = if (line_i + 1) < buf.line_count() || (block_i + 1) < block_count(&line) {
min(
// Make sure we're not pushing the index off the end of the line block_range.0 + block_col_i,
if (line_i + 1) < buf.line_count() && new_col_i >= line.len_chars() && line.len_chars() > 0 block_range.1 - 1.min(block_range.1),
{ )
new_col_i = line.len_chars() - 1; } else {
} min(block_range.0 + block_col_i, block_range.1)
};
return (char_idx + new_col_i) - col_i; return (char_idx + new_col_i) - col_i;
} }

View File

@ -4,7 +4,7 @@ pub mod formatter;
mod screen; mod screen;
pub mod smallstring; pub mod smallstring;
use std::{cmp::min, time::Duration}; use std::time::Duration;
use crossterm::{ use crossterm::{
event::{Event, KeyCode, KeyEvent, KeyModifiers}, event::{Event, KeyCode, KeyEvent, KeyModifiers},