diff options
author | James Campos <james.r.campos@gmail.com> | 2020-05-18 04:47:58 -0700 |
---|---|---|
committer | James Campos <james.r.campos@gmail.com> | 2020-05-18 04:47:58 -0700 |
commit | fc0c55e12706d47b49d34690eb607732e532f4e8 (patch) | |
tree | 7c46e22feb0d1246f58d4d60e0ed58415dc27f8c /src/main.rs | |
parent | 01aece19aae5bdc0bc99a3803a99bec3f19798b9 (diff) | |
download | bk-fc0c55e12706d47b49d34690eb607732e532f4e8.tar.gz |
limit title length
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 2d51757..237f33d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,5 @@ use std::io::{stdout, Write}; -use std::{cmp::min, env, process::exit}; +use std::{cmp::min, env, iter, process::exit}; use crossterm::{ cursor, @@ -314,6 +314,15 @@ impl Bk<'_> { let mut chapters = Vec::with_capacity(epub.chapters.len()); for (title, text) in epub.chapters { + let title = if title.chars().count() > width { + title + .chars() + .take(width - 1) + .chain(iter::once('…')) + .collect() + } else { + title + }; let wrap = wrap(&text, width); let mut lines = Vec::with_capacity(wrap.len()); let mut bytes = Vec::with_capacity(wrap.len()); @@ -414,7 +423,7 @@ impl Bk<'_> { match dir { Direction::Forward => { let tail = (self.chapter + 1..self.chapters.len() - 1).map(|n| (n, 0)); - for (c, byte) in std::iter::once(head).chain(tail) { + for (c, byte) in iter::once(head).chain(tail) { if let Some(index) = self.chapters[c].text[byte..].find(&self.query) { self.line = match self.chapters[c].bytes.binary_search(&(byte + index)) { Ok(n) => n, @@ -430,7 +439,7 @@ impl Bk<'_> { let tail = (0..self.chapter - 1) .rev() .map(|c| (c, self.chapters[c].text.len())); - for (c, byte) in std::iter::once(head).chain(tail) { + for (c, byte) in iter::once(head).chain(tail) { if let Some(index) = self.chapters[c].text[..byte].rfind(&self.query) { self.line = match self.chapters[c].bytes.binary_search(&index) { Ok(n) => n, |