aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock1
-rw-r--r--Cargo.toml1
-rw-r--r--src/bin/explode.rs3
3 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 30c71d3..ea870a3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -917,6 +917,7 @@ dependencies = [
"tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-pty-process-stream 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"ttyrec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"vt100 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"vte 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Cargo.toml b/Cargo.toml
index f8fcb3b..5ecb95f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,5 +12,6 @@ mio = "0.6"
tokio = "0.1.22"
tokio-pty-process-stream = "0.2"
ttyrec = "0.2"
+unicode-width = "0.1"
vt100 = "0.6"
vte = "0.3"
diff --git a/src/bin/explode.rs b/src/bin/explode.rs
index 37ed07c..d23a59b 100644
--- a/src/bin/explode.rs
+++ b/src/bin/explode.rs
@@ -1,4 +1,5 @@
use std::io::Read as _;
+use unicode_width::UnicodeWidthStr as _;
#[derive(Default)]
struct Printer {
@@ -12,7 +13,7 @@ impl Printer {
fn flush(&mut self) {
if !self.chars.is_empty() {
- println!("TEXT \"{}\"", self.chars);
+ println!("TEXT({}) \"{}\"", self.chars.width(), self.chars);
self.chars.clear();
}
}