We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
get_hl_color()
In themes/init.lua the function M.get_hl_color() with neovim api vim.api.nvim_get_hl() can not get bg or fg color for link groups.
themes/init.lua
M.get_hl_color()
vim.api.nvim_get_hl()
set option link = false will works fine.
link = false
local ok, hl = pcall(vim.api.nvim_get_hl, 0, { name = group_name, link = false })
The text was updated successfully, but these errors were encountered:
58b6ddb
Thank.
Sorry, something went wrong.
No branches or pull requests
In
themes/init.lua
the functionM.get_hl_color()
with neovim apivim.api.nvim_get_hl()
can not get bg or fg color for link groups.set option
link = false
will works fine.The text was updated successfully, but these errors were encountered: