-
I want to set highlight for code action source name but I don't know where to hook to modify the window and the item |
Beta Was this translation helpful? Give feedback.
Answered by
stevearc
Mar 31, 2022
Replies: 1 comment 1 reply
-
At the moment there are very limited controls for customizing the UI, because I don't like the idea of supporting an API that diverges from the core function _G.add_highlights()
...
end
vim.cmd([[autocmd FileType DressingSelect lua add_highlights()]]) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
fitrh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At the moment there are very limited controls for customizing the UI, because I don't like the idea of supporting an API that diverges from the core
vim.ui.input
. However, if you want to do your own post-processing on the window you should be able to hook into the FileType autocmd.