summaryrefslogtreecommitdiffstats
path: root/src/paint.rs
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2020-06-16 21:14:57 -0400
committerDan Davison <dandavison7@gmail.com>2020-06-16 21:17:48 -0400
commitd8a4af979425bc38ebecaf980c5234cfb13b6801 (patch)
tree232e0923f3c7b1f6e45dc2ca22cce1e4f20ba685 /src/paint.rs
parent325e4e2cfc41dd7927ebc09867b17e0ea7737262 (diff)
Rename ANSI escape sequence constant
Diffstat (limited to 'src/paint.rs')
-rw-r--r--src/paint.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/paint.rs b/src/paint.rs
index bf836c4d..02b610d3 100644
--- a/src/paint.rs
+++ b/src/paint.rs
@@ -13,7 +13,7 @@ use crate::edits;
use crate::paint::superimpose_style_sections::superimpose_style_sections;
use crate::style::Style;
-pub const ANSI_CSI_ERASE_IN_LINE: &str = "\x1b[K";
+pub const ANSI_CSI_CLEAR_TO_EOL: &str = "\x1b[0K";
pub const ANSI_SGR_RESET: &str = "\x1b[0m";
pub struct Painter<'a> {
@@ -217,7 +217,7 @@ impl<'a> Painter<'a> {
None => config.background_color_extends_to_terminal_width,
};
if background_color_extends_to_terminal_width && have_background_for_right_fill {
- // HACK: How to properly incorporate the ANSI_CSI_ERASE_IN_LINE into ansi_strings?
+ // HACK: How to properly incorporate the ANSI_CSI_CLEAR_TO_EOL into ansi_strings?
if line
.to_lowercase()
.ends_with(&ANSI_SGR_RESET.to_lowercase())
@@ -225,7 +225,7 @@ impl<'a> Painter<'a> {
line.truncate(line.len() - ANSI_SGR_RESET.len());
}
output_buffer.push_str(&line);
- output_buffer.push_str(ANSI_CSI_ERASE_IN_LINE);
+ output_buffer.push_str(ANSI_CSI_CLEAR_TO_EOL);
output_buffer.push_str(ANSI_SGR_RESET);
} else {
output_buffer.push_str(&line);