« get me outta code hell

tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--util/ansi.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ansi.js b/util/ansi.js
index f921349..d4ed71d 100644
--- a/util/ansi.js
+++ b/util/ansi.js
@@ -157,7 +157,7 @@ const ansi = {
     // codes (by not including them in the returned width).
 
     if (text.includes(ESC)) {
-      text = text.replace(new RegExp(ESC + '\\[\\??[0-9]*.', 'g'), '')
+      text = text.replace(new RegExp(ESC + '\\[\\??[0-9;]*.', 'g'), '')
     }
 
     return wcwidth(text)