You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Filetype: rust
Configured backends:
treesitter (supported) (attached)
lsp (supported)
markdown (not supported) [Filetype is not markdown]
asciidoc (not supported) [Filetype is not asciidoc]
man (not supported) [Filetype is not man]
Show symbols: Class, Constructor, Enum, Function, Interface, Module, Method, Struct
Describe the bug
After opening the Aerial window, my <leader> key sometimes stops working. However, if I press other keys like ':' or '?', it seems to reset, and then my <leader> key starts working again. My <leader> key is set to the space key.
Each time you open a file, test the <leader> key to check if it works. You will notice that at some point the <leader> key stops working. It will remain non-functional until you press keys like : or ?, which seem to reset something.
Expected Behavior
The <leader> key should function consistently.
Minimal example file
No response
Minimal init.lua
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
{
"stevearc/aerial.nvim",
config=function()
require("aerial").setup({
-- add your aerial config here
})
end,
},
{
"nvim-treesitter/nvim-treesitter",
build=":TSUpdate",
config=function()
require("nvim-treesitter.configs").setup({
ensure_installed= { "c", "lua" },
auto_install=true,
highlight= { enable=true },
})
end,
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Additional context
No response
The text was updated successfully, but these errors were encountered:
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
vim.g.mapleader=""vim.keymap.set("n", "<leader><leader>", "<cmd>echomsg 'leader is working'<CR>")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
{
"stevearc/aerial.nvim",
config=function()
vim.keymap.set("n", "<leader>a", "<cmd>AerialToggle<CR>")
require("aerial").setup({
-- add your aerial config here
})
end,
},
{
"nvim-treesitter/nvim-treesitter",
build=":TSUpdate",
config=function()
require("nvim-treesitter.configs").setup({
ensure_installed= { "c", "lua", "rust" },
auto_install=true,
highlight= { enable=true },
})
end,
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
I opened files in the repo, toggled aerial open, and confirmed that at all points <space><space> prints the message "leader is working". Can you produce a more specific set of repro steps using this minimal config?
Neovim version (nvim -v)
NVIM v0.10.2
Operating system/version
MacOS 15.1.1
Output of :AerialInfo
Aerial Info
Filetype: rust
Configured backends:
treesitter (supported) (attached)
lsp (supported)
markdown (not supported) [Filetype is not markdown]
asciidoc (not supported) [Filetype is not asciidoc]
man (not supported) [Filetype is not man]
Show symbols: Class, Constructor, Enum, Function, Interface, Module, Method, Struct
Describe the bug
After opening the Aerial window, my <leader> key sometimes stops working. However, if I press other keys like ':' or '?', it seems to reset, and then my <leader> key starts working again. My <leader> key is set to the space key.
What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
barter-rs
directory.:AerialOpen
.barter-rs
source code.:
or?
, which seem to reset something.Expected Behavior
The <leader> key should function consistently.
Minimal example file
No response
Minimal init.lua
Additional context
No response
The text was updated successfully, but these errors were encountered: