aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Garde <remi.garde@free.fr>2020-03-02 21:41:26 +0100
committerGitHub <noreply@github.com>2020-03-02 20:41:26 +0000
commitf7561850b43cbb1e7a8ccd9e652ef7d338a6cf2b (patch)
tree5d855e3e7371c211ee6b6a3bfd717ddef34513b5
parentf83d55f0f05aeec943115e9c767e5c221d7f4317 (diff)
downloadalacritty-f7561850b43cbb1e7a8ccd9e652ef7d338a6cf2b.tar.gz
alacritty-f7561850b43cbb1e7a8ccd9e652ef7d338a6cf2b.zip
Remove HollowBlock/Hidden config cursor styles
Fixes #3367.
-rw-r--r--alacritty_terminal/src/ansi.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty_terminal/src/ansi.rs b/alacritty_terminal/src/ansi.rs
index a554ab72..1c1c7cd5 100644
--- a/alacritty_terminal/src/ansi.rs
+++ b/alacritty_terminal/src/ansi.rs
@@ -349,9 +349,11 @@ pub enum CursorStyle {
Beam,
/// Cursor is a box like `☐`
+ #[serde(skip)]
HollowBlock,
/// Invisible cursor
+ #[serde(skip)]
Hidden,
}