diff options
author | Josh Rahm <rahm@google.com> | 2021-09-15 00:12:07 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2021-09-15 00:12:07 -0600 |
commit | d2b578e011d62311125033d895060986a96d3c88 (patch) | |
tree | 00df698df2700c2a752f37a23858d1ce2a8c0a88 /alacritty_terminal/src/config/mod.rs | |
parent | 990f3f81f064f572aa0e6a528cfb3eb5215b88a4 (diff) | |
download | r-alacritty-d2b578e011d62311125033d895060986a96d3c88.tar.gz r-alacritty-d2b578e011d62311125033d895060986a96d3c88.tar.bz2 r-alacritty-d2b578e011d62311125033d895060986a96d3c88.zip |
Added a rudimentary undercurl to Alacritty. Currently does not support setting the color. That is the next task
Diffstat (limited to 'alacritty_terminal/src/config/mod.rs')
-rw-r--r-- | alacritty_terminal/src/config/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs index 0b313598..382314bd 100644 --- a/alacritty_terminal/src/config/mod.rs +++ b/alacritty_terminal/src/config/mod.rs @@ -66,6 +66,7 @@ pub struct Cursor { pub style: ConfigCursorStyle, pub vi_mode_style: Option<ConfigCursorStyle>, pub unfocused_hollow: bool, + pub cursor_crosshairs: bool, thickness: Percentage, blink_interval: u64, @@ -79,6 +80,7 @@ impl Default for Cursor { blink_interval: 750, style: Default::default(), vi_mode_style: Default::default(), + cursor_crosshairs: false, } } } |