Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: key was broken for <M-t> #307

Closed
3 tasks done
mathjiajia opened this issue Jan 4, 2023 · 0 comments · Fixed by #312
Closed
3 tasks done

bug: key was broken for <M-t> #307

mathjiajia opened this issue Jan 4, 2023 · 0 comments · Fixed by #312
Labels
bug Something isn't working

Comments

@mathjiajia
Copy link

mathjiajia commented Jan 4, 2023

Did you check docs and existing issues?

  • I have read all the lazy docs
  • I have searched the existing issues of lazy
  • I have searched the exsiting issues of the plugin I have a problem with

Neovim version (nvim -v)

NVIM v0.9.0-dev-611+g936e191fe

Operating system/version

macOS 13.1

Describe the bug

The keys like <M-t>' do not work in the first time, while others (say, set to ft`) are fine.
After loading the plugin, this key works as expected.

Steps To Reproduce

  1. use the repro.lua below
  2. run with nvim -u repro.lua

Expected Behavior

Works as other keys: in this case, toggle the neotree.

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
	vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
	vim.fn.system({
		"git",
		"clone",
		"--filter=blob:none",
		"--single-branch",
		"https://github.com/folke/lazy.nvim.git",
		lazypath,
	})
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
	"folke/tokyonight.nvim",
	-- add any other plugins here
	{
		"nvim-neo-tree/neo-tree.nvim",
		keys = {
			{ "<M-t>", "<cmd>Neotree toggle<cr>", desc = "NeoTree" },
		},
		dependencies = {
			"nvim-lua/plenary.nvim",
			"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
			"MunifTanjim/nui.nvim",
		},
		config = function()
			require("neo-tree").setup()
		end,
	}
}
require("lazy").setup(plugins, {
	root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here
@mathjiajia mathjiajia added the bug Something isn't working label Jan 4, 2023
@mathjiajia mathjiajia changed the title bug: key was broken bug: key was broken for <M-t> Jan 4, 2023
@folke folke closed this as completed in 507b695 Jan 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant