changed backspace functionality

backspace will now skip to the last real character on a line and skip over null characters
This commit is contained in:
FantasyPvP
2023-10-01 03:18:57 +01:00
parent ded4140f7c
commit f0ee584c87
7 changed files with 502 additions and 475 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ use futures_util::task::AtomicWaker;
use futures_util::stream::StreamExt;
use pc_keyboard::{layouts, DecodedKey, HandleControl, Keyboard, ScancodeSet1};
use crate::print;
use crate::kernel::render2::RENDERER;
use crate::kernel::render::RENDERER;
use alloc::{string::String};
static WAKER: AtomicWaker = AtomicWaker::new();