We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f6600 commit 94c7c81Copy full SHA for 94c7c81
lua/nvim-tree.lua
@@ -691,7 +691,7 @@ local function validate_options(conf)
691
validate(conf, DEFAULT_OPTS, ACCEPTED_STRINGS, "")
692
693
if msg then
694
- vim.notify_once(msg .. " | see :help nvim-tree-opts for available configuration options\n", vim.log.levels.WARN)
+ vim.notify_once(msg .. " | see :help nvim-tree-opts for available configuration options", vim.log.levels.WARN)
695
end
696
697
@@ -714,7 +714,7 @@ end
714
715
function M.setup(conf)
716
if vim.fn.has "nvim-0.8" == 0 then
717
- vim.notify_once("nvim-tree.lua requires Neovim 0.8 or higher\n", vim.log.levels.WARN)
+ vim.notify_once("nvim-tree.lua requires Neovim 0.8 or higher", vim.log.levels.WARN)
718
return
719
720
0 commit comments