Start implementing proper cursor movement

This commit is contained in:
Joscha 2022-06-14 17:29:26 +02:00
parent bec12917d6
commit ea6b345fa9
5 changed files with 148 additions and 46 deletions

View file

@ -17,6 +17,7 @@ pub trait Msg {
fn content(&self) -> String;
}
#[derive(PartialEq, Eq, PartialOrd, Ord)]
pub struct Path<I>(Vec<I>);
impl<I> Path<I> {