Replies: 1 comment
-
Not tested but you could try: -- show Blank Line only in active window
local blanklineGrp = api.nvim_create_augroup("BlankLine", { clear = true })
api.nvim_create_autocmd(
{ "InsertLeave", "WinEnter" },
{ pattern = "*", command = ":IBLEnable", group = blanklineGrp }
)
api.nvim_create_autocmd(
{ "InsertEnter", "WinLeave" },
{ pattern = "*", command = ":IBLDisable", group = blanklineGrp }
)
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In order to minimize distraction: Is it possible to disable Indent Blankline in an unfocused window?
Beta Was this translation helpful? Give feedback.
All reactions