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 920868d commit 807dc05Copy full SHA for 807dc05
lua/nvim-tree.lua
@@ -656,7 +656,7 @@ local function validate_options(conf)
656
validate(conf, DEFAULT_OPTS, "")
657
658
if msg then
659
- vim.notify_once(msg .. " | see :help nvim-tree-setup for available configuration options", vim.log.levels.WARN)
+ vim.notify_once(msg .. " | see :help nvim-tree-setup for available configuration options\n", vim.log.levels.WARN)
660
end
661
662
@@ -679,7 +679,7 @@ end
679
680
function M.setup(conf)
681
if vim.fn.has "nvim-0.8" == 0 then
682
- vim.notify_once("nvim-tree.lua requires Neovim 0.8 or higher", vim.log.levels.WARN)
+ vim.notify_once("nvim-tree.lua requires Neovim 0.8 or higher\n", vim.log.levels.WARN)
683
return
684
685
0 commit comments