Compare commits

...

1 Commits

Author SHA1 Message Date
e74c5ec014
simple fixes 2023-04-15 20:24:56 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@ pub enum BufferKind {
impl BufferKind {
pub fn as_str(&self) -> &str {
match self {
BufferKind::Scratch => "*scratch*",
BufferKind::Write => "write",
BufferKind::Read => "read",
BufferKind::Scratch => "*Scratch*",
BufferKind::Write => "Write",
BufferKind::Read => "Read",
}
}
}

View File

@ -20,6 +20,6 @@ fn main() {
// Initalise a screen
let mut screen = terminal::screen::Screen::new().unwrap();
// Begin lambda
// Begin velocity
tui::ui::start(&mut screen, velocity);
}