Switched rainbow delims feedback to notification instead of print

This commit is contained in:
2025-12-13 01:33:01 +00:00
parent 71aec37b09
commit aacfb6d87d

View File

@@ -429,9 +429,9 @@ return {
local rm_module = require("rainbow-delimiters")
rm_module.toggle()
if rm_module.is_enabled() then
print("Rainbow Delimiters: ON")
vim.notify("Rainbow Delimiters: ON", vim.log.levels.INFO)
else
print("Rainbow Delimiters: OFF")
vim.notify("Rainbow Delimiters: OFF", vim.log.levels.INFO)
end
end,
desc = "Toggle Rainbow Delimiters"