I disabled the automatic execution of guess-indent and started calling vim.api.nvim_command("GuessIndent") in one of my own autocmds so I can dynamically adjust listchars based on the file's indentation.
But now I'm getting messages about the indentation being set (eg, Did set indentation to tabs.) Is there a way to silence those messages?
I disabled the automatic execution of guess-indent and started calling
vim.api.nvim_command("GuessIndent")
in one of my own autocmds so I can dynamically adjustlistchars
based on the file's indentation.But now I'm getting messages about the indentation being set (eg,
Did set indentation to tabs.
) Is there a way to silence those messages?