From 8855fb1173ed118bda8e75ccd75c1b0db26bdcf7 Mon Sep 17 00:00:00 2001 From: Saikari Date: Tue, 27 Jan 2026 00:19:16 +0300 Subject: add support for Alacritty terminal in tty.term function --- xmake/core/base/tty.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xmake/core/base/tty.lua b/xmake/core/base/tty.lua index a605a4a9e..39c4c0d31 100644 --- a/xmake/core/base/tty.lua +++ b/xmake/core/base/tty.lua @@ -396,6 +396,8 @@ function tty.term() term = "xterm" elseif TERM == "cygwin" then term = "cygwin" + elseif TERM:find("alacritty", 1, true) then + term = "alacritty" end end end -- cgit v1.3.1