From 9d117304173a3b48a4c588f10138cbefd071f354 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 15 Jul 2024 22:58:43 +0200 Subject: [PATCH] fixed #9746, fixed #9748, fixed #9757, fixed #9779 - altIsMeta not working on macOS --- tabby-terminal/src/frontends/xtermFrontend.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tabby-terminal/src/frontends/xtermFrontend.ts b/tabby-terminal/src/frontends/xtermFrontend.ts index be93e9b1..26961e77 100644 --- a/tabby-terminal/src/frontends/xtermFrontend.ts +++ b/tabby-terminal/src/frontends/xtermFrontend.ts @@ -399,6 +399,10 @@ export class XTermFrontend extends Frontend { } }) + this.xtermCore.browser.isWindows = this.hostApp.platform === Platform.Windows + this.xtermCore.browser.isLinux = this.hostApp.platform === Platform.Linux + this.xtermCore.browser.isMac = this.hostApp.platform === Platform.macOS + this.xterm.options.fontFamily = getCSSFontFamily(config) this.xterm.options.cursorStyle = { beam: 'bar',