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
I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
v0.9.0
Operating system/version
archlinux
Describe the bug
When pressing <K> on a plugin's help file, the floating lazy window does not close. Instead, Lazy remains open for the rest of the session and cannot be focused again unless you force close it using :bd <bufnum>
bad2.mp4
Steps To Reproduce
nvim -u repro.lua
:Lazy<CR>
go to a plugin that has a help file like |tokyonight.nvim.txt|
Press <K>
help file opens behind lazy and lazy becomes unfocusable
Expected Behavior
Lazy window should close immediately after opening the help file. Alternatively, lazy should handle help files in a similar manner to how it handles git diffs.
Git bisect gave me commit 7339145. Lazy works as expected after reverting it:
good.mp4
Repro
-- 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", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"folke/tokyonight.nvim",
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.9.0
Operating system/version
archlinux
Describe the bug
When pressing
<K>
on a plugin's help file, the floating lazy window does not close. Instead, Lazy remains open for the rest of the session and cannot be focused again unless you force close it using:bd <bufnum>
bad2.mp4
Steps To Reproduce
nvim -u repro.lua
:Lazy<CR>
|tokyonight.nvim.txt|
<K>
Expected Behavior
Lazy window should close immediately after opening the help file. Alternatively, lazy should handle help files in a similar manner to how it handles git diffs.
Git bisect gave me commit 7339145. Lazy works as expected after reverting it:
good.mp4
Repro
The text was updated successfully, but these errors were encountered: