wip: refactor pt.13: 146 errors

This commit is contained in:
🪞👃🪞 2024-11-10 23:12:20 +01:00
parent 2be7aee002
commit fbf217e108
6 changed files with 201 additions and 220 deletions

View file

@ -30,7 +30,7 @@ impl<F: FocusGrid> Command<F> for FocusCommand {
}
pub trait FocusGrid {
type Item: Copy + PartialEq;
type Item: Copy + PartialEq + Debug;
fn layout (&self) -> &[&[Self::Item]];
fn cursor (&self) -> (usize, usize);
fn cursor_mut (&mut self) -> &mut (usize, usize);