From af3cb3488a7a7afa474655971797dad5841b109b Mon Sep 17 00:00:00 2001 From: Anton Anikin Date: Sun, 13 Jul 2025 15:36:19 +0800 Subject: [PATCH] small fix for windows --- src/array_utils.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/array_utils.cpp b/src/array_utils.cpp index 8d9b60f..7d0d68f 100644 --- a/src/array_utils.cpp +++ b/src/array_utils.cpp @@ -78,7 +78,8 @@ terminal_is_cmd() std::string_view path(exe_path); if (path.ends_with("\\WindowsTerminal.exe") || path.ends_with("\\ConEmuC64.exe") - || path.ends_with("\\ConEmuC.exe")) + || path.ends_with("\\ConEmuC.exe") + || path.ends_with("\\wezterm-gui.exe")) { return false; }