wez / wezterm

A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust
https://wezfurlong.org/wezterm/
Other
17.77k stars 795 forks source link

Emoji is not aligned with text #1203

Closed shaozi closed 2 years ago

shaozi commented 3 years ago

Emojis displayed are lower than regular texts. see screenshot:

Screen Shot 2021-10-05 at 9 52 04 AM

shaozi commented 3 years ago

What Operating System(s) are you seeing this problem on?

macOS

WezTerm version

20210814-124438-54e29167

Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?

Yes. Same issue.

Config file


local wezterm = require 'wezterm';

return {
  font_size = 15,
  -- use_ime = true,
  enable_scroll_bar = true,
  window_padding = {
    left = 2,
    -- This will become the scrollbar width if you have enabled the scrollbar!
    right = 8,
    top = 4,
    bottom = 0,
  },
  color = {
    scrollbar_thumb = "white",
  },
  inactive_pane_hsb = {
    saturation = 0.9,
    brightness = 0.8,
  },
  launch_menu = {
    {
      label = "Bash",
      args = {"bash", "-l"},
    },
  },

  keys = {
    {
     key = "d", mods="CMD",
     action=wezterm.action{SplitHorizontal={domain="CurrentPaneDomain"}}
    },
    {
     key = "D", mods="CMD",
     action=wezterm.action{SplitVertical={domain="CurrentPaneDomain"}}
    },
    {
     key="w", mods="CMD",
     action=wezterm.action{CloseCurrentPane={confirm=true}}
    }
  }
}
ModProg commented 3 years ago

It seams to me that this over corrected:
Wezterm-git (wezterm 20211005-220121-e25deaae): grafik Alacritty: grafik Both using the same font mononoki.

This is wezterm in nightly wezterm 20211002-212547-9a787549: grafik

wez commented 2 years ago

This was resolved a while ago, closing out

github-actions[bot] commented 1 year ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.