removed debug statements

This commit is contained in:
Adhyan 2024-09-01 19:03:33 -06:00
parent e1e316b931
commit 388f8da97f
3 changed files with 1 additions and 11 deletions

View file

@ -55,7 +55,6 @@ fn run_bin(
}
/// See `info_file::ExerciseInfo`
#[derive(Debug)]
pub struct Exercise {
pub dir: Option<&'static str>,
pub name: &'static str,

View file

@ -43,8 +43,6 @@ fn handle_list(app_state: &mut AppState, stdout: &mut StdoutLock) -> Result<()>
return Ok(());
}
KeyCode::Char(k) => {
eprintln!("pressed while searching {:?}", curr_key);
list_state.search_query.push(k);
list_state.message.push_str("search:");
list_state.message.push_str(&list_state.search_query);
@ -109,15 +107,12 @@ fn handle_list(app_state: &mut AppState, stdout: &mut StdoutLock) -> Result<()>
}
}
KeyCode::Char('s') | KeyCode::Char('/') => {
eprintln!("starting search");
list_state.message.push_str("search:|");
is_searching = true;
}
// Redraw to remove the message.
KeyCode::Esc => (),
_ => {
continue;
}
_ => continue,
}
}
Event::Mouse(event) => match event.kind {

View file

@ -348,8 +348,6 @@ impl<'a> ListState<'a> {
}
pub fn select_if_matches_search_query(&mut self) {
eprintln!("search query: {:?}", self.search_query);
let idx = self
.app_state
.exercises()
@ -362,7 +360,6 @@ impl<'a> ListState<'a> {
None
}
});
eprintln!("idx: {:?}", idx);
match idx {
Some(i) => {
@ -370,7 +367,6 @@ impl<'a> ListState<'a> {
// let exercise_ind = self.selected_to_exercise_ind(i).unwrap();
let exercise_ind = i;
self.scroll_state.set_selected(exercise_ind);
eprintln!("exercise_ind: {:?}", exercise_ind);
self.update_rows();
}
None => {