fix: commands for toggling neotree

This commit is contained in:
əlemi 2024-08-25 03:51:03 +02:00
parent 532733ac76
commit d8ef03d43c
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -4,8 +4,8 @@ if success then
return {
update = function () manager.refresh("codemp") end,
init = function () end,
open = function () vim.cmd(":Neotree open source=codemp<CR>") end,
toggle = function () vim.cmd(":Neotree toggle source=codemp<CR>") end,
open = function () vim.cmd("Neotree open source=codemp") end,
toggle = function () vim.cmd("Neotree toggle source=codemp") end,
}
end