Skip to content

Commit

Permalink
fixed #9746, fixed #9748, fixed #9757, fixed #9779 - altIsMeta not wo…
Browse files Browse the repository at this point in the history
…rking on macOS
  • Loading branch information
Eugeny committed Jul 15, 2024
1 parent 4d63422 commit 9d11730
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tabby-terminal/src/frontends/xtermFrontend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9d11730

Please sign in to comment.