aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/cursor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty_terminal/src/cursor.rs')
-rw-r--r--alacritty_terminal/src/cursor.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/alacritty_terminal/src/cursor.rs b/alacritty_terminal/src/cursor.rs
index 196241a0..93f2bd30 100644
--- a/alacritty_terminal/src/cursor.rs
+++ b/alacritty_terminal/src/cursor.rs
@@ -23,6 +23,13 @@ use crate::ansi::CursorStyle;
/// Width/Height of the cursor relative to the font width
pub const CURSOR_WIDTH_PERCENTAGE: i32 = 15;
+/// A key for caching cursor glyphs
+#[derive(Debug, Eq, PartialEq, Copy, Clone, Hash, Deserialize)]
+pub struct CursorKey {
+ pub style: CursorStyle,
+ pub is_wide: bool,
+}
+
pub fn get_cursor_glyph(
cursor: CursorStyle,
metrics: Metrics,