From 177f826f879ae40c93c41b1c27f4fc0f6be6a5a6 Mon Sep 17 00:00:00 2001 From: Eric Nielsen Date: Fri, 26 Nov 2021 09:54:53 -0500 Subject: [PATCH] Updated Speed (markdown) --- Speed.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Speed.md b/Speed.md index 0095082..cf08f54 100644 --- a/Speed.md +++ b/Speed.md @@ -9,7 +9,7 @@ set wd [file tail [pwd]] set c0 [clock microseconds] spawn -noecho zsh -li expect { - -re {\e]([07]|1337);[^\a]*\a} { exp_continue } ; # match escape sequences to be ignored + -re {\e](?:[0127]|1337);.*?(?:\a|\e\\)} { exp_continue } ; # match escape sequences to be ignored $wd { send_error "[expr [clock microseconds] - $c0]\n" } ; # match working dir at prompt timeout { exit 1 } }