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 exsiting issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.9.0-dev-525+g0e9a34cbb
Operating system/version
MacOS Ventura 13.0
Describe the bug
Don't use b for rebuilding in the ui. I would say that b is a pretty normal key to use for moving the cursor horizontally. It is annoying that it doesn't move the cursor back like it normally does.
Please consider changing this to another key
Steps To Reproduce
Open the lazy ui and press b after moving the cursor horizontally to the right.
Expected Behavior
b works like normal to move the cursor back horizontally in the ui, or an option to remove this behaviour without a hack with vim.keymap.del.
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)
NVIM v0.9.0-dev-525+g0e9a34cbb
Operating system/version
MacOS Ventura 13.0
Describe the bug
Don't use
b
for rebuilding in the ui. I would say thatb
is a pretty normal key to use for moving the cursor horizontally. It is annoying that it doesn't move the cursor back like it normally does.Please consider changing this to another key
Steps To Reproduce
Open the lazy ui and press
b
after moving the cursor horizontally to the right.Expected Behavior
b
works like normal to move the cursor back horizontally in the ui, or an option to remove this behaviour without a hack withvim.keymap.del
.Repro
The text was updated successfully, but these errors were encountered: