diff options
author | Danny Dulai <danny@ishiboo.com> | 2017-01-08 22:18:39 -0500 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-29 16:06:29 -0800 |
commit | e04584b0826eb18917314c2ea7bee7c8a22295be (patch) | |
tree | 6aeb88a41dd3a60d0fc6152e080a05e079cb5a65 /src/ansi.rs | |
parent | 2b478e7b9c5e7cd6c93254d3882e79ced9ec43c9 (diff) | |
download | alacritty-e04584b0826eb18917314c2ea7bee7c8a22295be.tar.gz alacritty-e04584b0826eb18917314c2ea7bee7c8a22295be.zip |
support for inverting the cursor or using colors
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index 30048048..c9f7e268 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -380,6 +380,10 @@ pub enum NamedColor { Foreground = 256, /// The background color Background, + /// The cursor foreground color + CursorForeground, + /// The cursor background color + CursorBackground, } impl NamedColor { |