-
-
Notifications
You must be signed in to change notification settings - Fork 633
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Description
Commands are not working anymore. I just updated my NvimTree an hour ago, and suddenly it stopped working. I'm not sure which commit caused this bug.
Here is where I install it:
https://github.com/HicaroD/nvim-cfg-lua/blob/master/lua/hicaro/packer.lua#L56
Here is my NvimTree configuration:
https://github.com/HicaroD/nvim-cfg-lua/blob/master/after/plugin/nvimtree.lua
Neovim version
NVIM v0.9.1
Build type: Release
LuaJIT 2.1.0-beta3
Operating system and version
Linux 6.1.44-1-MANJARO
nvim-tree version
Clean room replication
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.cmd [[set runtimepath=$VIMRUNTIME]]
vim.cmd [[set packpath=/tmp/nvt-min/site]]
local package_root = "/tmp/nvt-min/site/pack"
local install_path = package_root .. "/packer/start/packer.nvim"
local function load_plugins()
require("packer").startup {
{
"wbthomason/packer.nvim",
"nvim-tree/nvim-tree.lua",
"nvim-tree/nvim-web-devicons",
-- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
},
config = {
package_root = package_root,
compile_path = install_path .. "/plugin/packer_compiled.lua",
display = { non_interactive = true },
},
}
end
if vim.fn.isdirectory(install_path) == 0 then
print "Installing nvim-tree and dependencies."
vim.fn.system { "git", "clone", "--depth=1", "https://github.com/wbthomason/packer.nvim", install_path }
end
load_plugins()
require("packer").sync()
vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua setup()]]
vim.opt.termguicolors = true
vim.opt.cursorline = true
-- MODIFY NVIM-TREE SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
_G.setup = function()
local nvimtree = require("nvim-tree")
local config_status_ok, _ = pcall(require, "nvim-tree.config")
if not config_status_ok then
return
end
local function my_on_attach(bufnr)
local api = require("nvim-tree.api")
local function opts(desc)
return { desc = "nvim-tree: " .. desc, buffer = bufnr, noremap = true, silent = true, nowait = true }
end
api.config.mappings.default_on_attach(bufnr)
vim.keymap.set('n', '<space>', api.node.open.edit, opts("Open"))
end
nvimtree.setup({
on_attach = my_on_attach,
update_focused_file = {
enable = true,
update_cwd = true,
},
renderer = {
root_folder_modifier = ":t",
icons = {
glyphs = {
default = "",
symlink = "",
folder = {
arrow_open = "",
arrow_closed = "",
default = "",
open = "",
empty = "",
empty_open = "",
symlink = "",
symlink_open = "",
},
git = {
unstaged = "",
staged = "S",
unmerged = "",
renamed = "➜",
untracked = "U",
deleted = "",
ignored = "◌",
},
},
},
highlight_opened_files = "name",
indent_markers = {
enable = true,
}
},
diagnostics = {
enable = true,
show_on_dirs = true,
icons = {
hint = "",
info = "",
warning = "",
error = "",
},
},
view = {
width = 30,
side = "left",
},
})
end
Steps to reproduce
- Open Neovim
- Try running any NvimTree command, such as
:NvimTreeToggle
Expected behavior
Should open NvimTree.
Actual behavior
Reports an error:
Not an editor command: NvimTreeToggle
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working