fix: switches underdotter and underdot arround#11
fix: switches underdotter and underdot arround#11ulisses-cruz wants to merge 2 commits intoLunarVim:masterfrom
Conversation
|
What's your neovim version? |
|
You can use a protected call to try setting the highlight with underdotted, and if that fails fall back to the old underdot, this way we don't need to check version at all: local underdotted_ok, _ = pcall(hl, 0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underdotted=true })
if not underdotted_ok then
hl(0, "markdownUrl", { fg = c.cyan, bg = 'NONE', underdot=true, })
endBut I still recommend keeping your neovim updated especially when using a development build. |
|
Thanks @gutyina70. I've reinstalled neovim, and it works fine for me now. |
|
I'm glad it's working for you @ulisses-cruz! |


This made the 'darkplus' theme stop working for me.
It is a tiny fix.