-
Notifications
You must be signed in to change notification settings - Fork 412
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: the latest commit keys first trigger not work #511
Comments
For what key? Can you please add the steps/keys to type that don't seem to work for you? |
Also, please provide a minimal repro as instructed in the issue template |
repro: Do -- 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", "https://github.com/folke/lazy.nvim.git", lazypath })
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"folke/tokyonight.nvim",
{
"numToStr/Comment.nvim",
keys = {
{ "gc", mode = { "n", "v", "x" } },
{ "gb", mode = { "n", "v", "x" } },
{
"<leader>/",
function()
require("Comment.api").toggle.linewise.current()
end,
mode = "n",
desc = "Comment",
},
{
"<leader>/",
"<Plug>(comment_toggle_linewise_visual)",
mode = "v",
desc = "Comment toggle linewise (visual)",
},
},
config = function()
require("Comment").setup()
end,
},
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
vim.cmd.colorscheme("tokyonight") |
Works on nightly, but not on stable. Will look into it |
Sorry for that. |
Thanks, works now |
@folke repro.lua-- 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)
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.scrolloff = 16
local plugins = {
{
'folke/tokyonight.nvim',
lazy = false,
config = function()
vim.cmd.colorscheme 'tokyonight'
end,
},
{
'nvim-neo-tree/neo-tree.nvim',
dependencies = {
{ 'MunifTanjim/nui.nvim' },
{ 'nvim-lua/plenary.nvim' },
},
cmd = { 'Neotree' },
keys = {
{
'<C-p>',
'<cmd>Neotree toggle<cr>',
mode = { 'n' },
},
},
config = function()
require('neo-tree').setup {}
end,
},
{
'akinsho/toggleterm.nvim',
keys = {
{
[[<C-\>]],
function()
require('toggleterm').toggle(vim.v.count)
end,
mode = { 'n' },
},
{
'<leader>tt',
function()
require('toggleterm').toggle_all(true)
end,
mode = { 'n' },
},
},
config = function()
local size = {
horizontal = 15,
vertical = vim.o.columns * 0.4,
}
require('toggleterm').setup {
size = function(term)
return size[term.direction]
end,
shade_terminals = false,
}
end,
},
{
'mg979/vim-visual-multi',
keys = {
{ '<C-n>', mode = { 'n' } },
},
}
}
require('lazy').setup(plugins, {
root = root .. '/plugins',
defaults = {
lazy = true,
}
})
vice-versa on 4272d21 2023-02-08.14-18-40.mov |
Hopefully I fixed it for good now. I re-tested all closed issues related to the |
Awesome! That seems to have fixed it. Do you know what cause the change between master and stable? |
Couldn't find the exact cause, but it has something to do with keymaps returning an expression for another keymap that has been created while evaluating the keymap :) It seems as if on stable, that new keymap is not known. But I found another way to work around this and make it work. The new approach (as the one that broke) is much simpler than before, but it's always tricky to make changes to the keys handler due to all the quirks related to Neovim keymaps. |
Did you check docs and existing issues?
Neovim version (nvim -v)
0.8.2
Operating system/version
arch 6.1.9
Describe the bug
Steps To Reproduce
Expected Behavior
expect first trigger key work
Repro
The text was updated successfully, but these errors were encountered: