-
|
Hello, I'm trying to use vimade with deadcolumn.nvim but I'm finding that the colorcolumn always gets reset to normal when vimade fades the window. Moreover, deadcolumn does not seem to work properly after this happens. It's like all of its highlighting functionality gets disabled. I've tried adding a blocklist rule for the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
|
Hi @shyun3, thank you for raising the issue. Can you try removing the blocklist rules and then adding this to either your vimrc or init.lua:
I suspect its a namespace mapping issue. https://github.com/Bekaboo/deadcolumn.nvim/blob/92c86f10bfba2717ca2280e2e759b047135d5288/lua/deadcolumn.lua#L63 sets |
Beta Was this translation helpful? Give feedback.

short term fix, if you don't have any other plugins that need window namespaces besides
deadcolumn.nvim, you cantry and use the
namespacebranch here: https://github.com/TaDaa/deadcolumn.nvim/tree/namespaceFor a better fix, I'm going to look at supporting functionality that deadcolumn.nvim provides as just a component interface in this plugin (components have been on my list todo for a while), but basically it'll mean you can specify something similar to recipes but control a tinier dynamic piece of highlighting. To clarify, this isn't intended to replace other plugins; rather vimade is already structured to handle dynamic highlights like this natively so it should be very natural to tu…