diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-12-22 17:16:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-22 17:16:54 +0000 |
commit | 2f9b815ebdcee4558284e5e9cef6ef282dc87b08 (patch) | |
tree | 09bf03e5c69d9e7e99e04ff55983ea5774435b86 /src/ansi.rs | |
parent | dad44134e2546dffec918a00169d32c6f9edc709 (diff) | |
download | alacritty-2f9b815ebdcee4558284e5e9cef6ef282dc87b08.tar.gz alacritty-2f9b815ebdcee4558284e5e9cef6ef282dc87b08.zip |
Add proper underline and strikeout support
This makes use of the new rectangle rendering methods used to display
the colored visual bell to add proper underline and strikeout support to
Alacritty.
Diffstat (limited to 'src/ansi.rs')
-rw-r--r-- | src/ansi.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ansi.rs b/src/ansi.rs index db8022e2..29b1a459 100644 --- a/src/ansi.rs +++ b/src/ansi.rs @@ -642,7 +642,7 @@ pub enum Attr { Reverse, /// Do not display characters Hidden, - /// Strikethrough text + /// Strikeout text Strike, /// Cancel bold CancelBold, @@ -658,7 +658,7 @@ pub enum Attr { CancelReverse, /// Cancel text hiding CancelHidden, - /// Cancel strike through + /// Cancel strikeout CancelStrike, /// Set indexed foreground color Foreground(Color), |