Editing starts to b real
This commit is contained in:
parent
20b5c0735d
commit
5e5583897b
1 changed files with 2 additions and 2 deletions
|
@ -98,8 +98,8 @@ impl Nuudel {
|
|||
self.cursory += 1;
|
||||
self.cursory = self.cursory.clamp(0, terminal::size()?.1-1);
|
||||
},
|
||||
KeyCode::Char(_) => {
|
||||
self.buffer.lines[usize::try_from(self.cursory).unwrap()].insert(self.cursorx.into(), 'A');
|
||||
KeyCode::Char(char) => {
|
||||
self.buffer.lines[usize::try_from(self.cursory).unwrap()].insert(self.cursorx.into(), char);
|
||||
self.cursorx += 1;
|
||||
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue