diff options
Diffstat (limited to 'alacritty_terminal/src/term/cell.rs')
-rw-r--r-- | alacritty_terminal/src/term/cell.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty_terminal/src/term/cell.rs b/alacritty_terminal/src/term/cell.rs index 8d1b135c..7a759777 100644 --- a/alacritty_terminal/src/term/cell.rs +++ b/alacritty_terminal/src/term/cell.rs @@ -26,6 +26,7 @@ bitflags! { const INVERSE = 0b00_0000_0001; const BOLD = 0b00_0000_0010; const ITALIC = 0b00_0000_0100; + const BOLD_ITALIC = 0b00_0000_0110; const UNDERLINE = 0b00_0000_1000; const WRAPLINE = 0b00_0001_0000; const WIDE_CHAR = 0b00_0010_0000; |