liuchengxu / vim-which-key

:tulip: Vim plugin that shows keybindings in popup
https://liuchengxu.github.io/vim-which-key/
MIT License
1.93k stars 65 forks source link

Foreground and background colors are swapped for the arrow #169

Closed matthis-k closed 3 years ago

matthis-k commented 3 years ago

OS: arch terminal emulater: alacritty neovim: NVIM v0.5.0-dev+950-g5ce328df4

using the nord theme plugin link to whole config

the arrow displays with fg and bg swapped image

liuchengxu commented 3 years ago

Override the default WhichKeySeperator highlight in your own config.

dimas-cyriaco commented 3 years ago

@matthis-k this seams to how Nord implemented the DiffAdded highlight group:

s:hi("DiffAdd", s:nord14_gui, s:nord0_gui, s:nord14_term, "NONE", "inverse", "")

Note de inverse param.

To me it worked fine with:

highlight default link WhichKeySeperator healthSuccess

Which seams to be the same implementation but without the inverse.