diff options
author | Joe Wilm <joe@jwilm.com> | 2017-03-01 22:24:37 -0800 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-03-02 09:19:01 -0800 |
commit | 119c7d2856aea24d9d29040b97b778e50c88e70d (patch) | |
tree | 2eac3ed6bb53f883d9e550b06ce9271f22155aa8 /src/term/cell.rs | |
parent | 55876522a2f4f93ea9ee0e1b4fec9d81621ae0cf (diff) | |
download | alacritty-119c7d2856aea24d9d29040b97b778e50c88e70d.tar.gz alacritty-119c7d2856aea24d9d29040b97b778e50c88e70d.zip |
Add support for wide characters
Diffstat (limited to 'src/term/cell.rs')
-rw-r--r-- | src/term/cell.rs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/term/cell.rs b/src/term/cell.rs index e6b8fc9a..cb966156 100644 --- a/src/term/cell.rs +++ b/src/term/cell.rs @@ -18,11 +18,13 @@ use index::Column; bitflags! { #[derive(Serialize, Deserialize)] pub flags Flags: u32 { - const INVERSE = 0b00000001, - const BOLD = 0b00000010, - const ITALIC = 0b00000100, - const UNDERLINE = 0b00001000, - const WRAPLINE = 0b00010000, + const INVERSE = 0b00000001, + const BOLD = 0b00000010, + const ITALIC = 0b00000100, + const UNDERLINE = 0b00001000, + const WRAPLINE = 0b00010000, + const WIDE_CHAR = 0b00100000, + const WIDE_CHAR_SPACER = 0b01000000, } } |