diff options
author | Joe Wilm <joe@jwilm.com> | 2016-10-28 09:19:48 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-10-28 09:19:48 -0700 |
commit | a81152cc43c12f4232be29798b85ba41fd9482cb (patch) | |
tree | 86cb6102af19daaa96b3cbfb1a3ef20af0374f0e /src/ansi.rs | |
parent | 7cd8a6ca12cd37ae354084c7246060219b1e3af8 (diff) | |
download | alacritty-a81152cc43c12f4232be29798b85ba41fd9482cb.tar.gz alacritty-a81152cc43c12f4232be29798b85ba41fd9482cb.zip |
Support drawing bold test with bright colors
This feature is on by default
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index c419d7e5..f6d5de37 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -303,7 +303,7 @@ pub enum TabulationClearMode { /// /// The order here matters since the enum should be castable to a `usize` for /// indexing a color list. -#[derive(Debug, Copy, Clone, Eq, PartialEq)] +#[derive(Debug, Copy, Clone, Eq, PartialEq, PartialOrd, Ord)] pub enum Color { /// Black Black = 0, |