mirror of
https://github.com/FliegendeWurst/tmux-thumbs.git
synced 2024-11-09 16:00:35 +00:00
Fix bug with short alphabets
This commit is contained in:
parent
e52cdad091
commit
02eacd4144
@ -104,7 +104,7 @@ fn main() {
|
|||||||
|
|
||||||
let mut typed_hint: String = "".to_owned();
|
let mut typed_hint: String = "".to_owned();
|
||||||
let matches = state.matches(reverse, unique);
|
let matches = state.matches(reverse, unique);
|
||||||
let longest_hint = matches.last().unwrap().hint.clone().unwrap().len();
|
let longest_hint = matches.iter().filter(|&m| m.hint.clone().is_some()).last().unwrap().hint.clone().expect("Unknown hint").len();
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let mut selected = matches.last();
|
let mut selected = matches.last();
|
||||||
|
@ -57,7 +57,7 @@ impl<'a> State<'a> {
|
|||||||
hint: None
|
hint: None
|
||||||
});
|
});
|
||||||
|
|
||||||
chunk = chunk.get(first_match.end()..).unwrap();
|
chunk = chunk.get(first_match.end()..).expect("Unknown chunk");
|
||||||
offset = offset + first_match.end() as i32;
|
offset = offset + first_match.end() as i32;
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user