Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[+] icon of column sign is not showing, randomly. #85

Open
greyHairChooseLife opened this issue May 8, 2023 · 0 comments
Open

[+] icon of column sign is not showing, randomly. #85

greyHairChooseLife opened this issue May 8, 2023 · 0 comments

Comments

@greyHairChooseLife
Copy link

greyHairChooseLife commented May 8, 2023

Every icons work fine but only 2 things left ugly.

First, when I open a commit, [+] icon or speech bubble icon is not showing for diff windows. I opened PRs like 50 times until now, it shows up only a few times.

Second, the icons like these 👉 👍 🥇 are not showing but only empty square. And it failed to load sometimes.

It is okay to leave emoji as I directly type in a comment thread like :+1:, I still can't read from others. I wonder it is about my font issue or.. something else.


Just in case, I use hack-nerd font, so I set icon-set = "nerd" for both gh.nvim, litee.nvim.

And here is my config as well.
require('litee.lib').setup({
  tree = {
      icon_set = "nerd",
    },
  panel = {
    orientation = "left",
    panel_size = 30,
  },
})
require('litee.gh').setup({
  -- deprecated, around for compatability for now.
  jump_mode   = "invoking",
  -- remap the arrow keys to resize any litee.nvim windows.
  map_resize_keys = false,
  -- do not map any keys inside any gh.nvim buffers.
  disable_keymaps = false,
  -- the icon set to use.
  icon_set = "nerd",
  -- any custom icons to use.
  icon_set_custom = nil,
  -- whether to register the @username and #issue_number omnifunc completion
  -- in buffers which start with .git/
  git_buffer_completion = true,
  -- defines keymaps in gh.nvim buffers.
  keymaps = {
    -- when inside a gh.nvim panel, this key will open a node if it has
    -- any futher functionality. for example, hitting <CR> on a commit node
    -- will open the commit's changed files in a new gh.nvim panel.
    open = "<CR>",
    -- when inside a gh.nvim panel, expand a collapsed node
    expand = "zo",
    -- when inside a gh.nvim panel, collpased and expanded node
    collapse = "zc",
    -- when cursor is over a "#1234" formatted issue or PR, open its details
    -- and comments in a new tab.
    goto_issue = "<CR>",
    -- show any details about a node, typically, this reveals commit messages
    -- and submitted review bodys.
    details = "d",
    -- inside a convo buffer, submit a comment
    submit_comment = "<C-s>",
    -- inside a convo buffer, when your cursor is ontop of a comment, open
    -- up a set of actions that can be performed.
    actions = "<C-a>",
    -- inside a thread convo buffer, resolve the thread.
    resolve_thread = "<C-r>",
    -- inside a gh.nvim panel, if possible, open the node's web URL in your
    -- browser. useful particularily for digging into external failed CI
    -- checks.
    goto_web = "gw", -- go web
        -- if selectable, select the object under the cursor for additional operations.
        select = "gs",
        -- if selectable, clear all selected items.
        clear_selection = "gss",
  }
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant