diff --git a/src/editor.rs b/src/editor.rs index 5bb66ab..f522b90 100644 --- a/src/editor.rs +++ b/src/editor.rs @@ -1,6 +1,5 @@ use std::collections::HashMap; -use neovim_lib::{Neovim, NeovimApi}; use skulpin::skia_safe::{colors, Color4f}; use crate::events::{GridLineCell, RedrawEvent}; @@ -90,6 +89,7 @@ impl CursorType { pub struct Editor { pub grid: Vec>, + pub title: String, pub cursor_pos: (u64, u64), pub cursor_type: CursorType, pub cursor_style: Option