-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Use vim.api.nvim_set_hl() #69
Comments
This theme uses an internal method: Suppose this ideally should be copied into this repo because it's marked as private, hence no guarantee to keep working in later releases :) |
So it uses |
To use the current (i.e. 0.6.1)
Not really sure if it's worth supporting the |
And I am not sure if using |
I believe it will work exactly the same. The |
Unless I am doing something wrong I am getting different results depending on whether |
I see. I'm not familiar with this specific highlighting function, but in hindsight that makes sense... it's the same for virtual text which I've used extensively in another plugin I work on. Derp! |
I am working on some refactor to nordic to work with that new interface. Will get it to working state and open PR. |
Since |
With neovim/neovim@4aa0cdd merged in it is possible now to use
vim.api.nvim_set_hl(0, …)
to set highlights for global:highlight
namespace.I have noticed in nordic's code that you are using
vim.highlight.create
but couldn't find it in documentation. What is it?The text was updated successfully, but these errors were encountered: