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.10.0-dev-2098+g92672a161
Operating system/version
Windows 11 23H2
Describe the bug
This could be related to the known issue described here. If it's a duplicate, please feel free to close it as such.
That being said, this is only occurring on nightly. I cannot reproduce the problem in the current v9 release.
The best way I can describe the problem is that the cmd line is one char behind when doing substitute commands. For example, if I type %s/text the cmd line will show %s/tex instead. You can see this in the screenshot below:
Steps To Reproduce
Using the config provided, start Neovim and open a file.
Type :%s/test.
Note what has been typed vs. what is displayed.
Expected Behavior
Typed characters and displayed characters should match.
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" },
{
"folke/noice.nvim",
dependencies= { "rcarriga/nvim-notify", "MunifTanjim/nui.nvim" },
config=function()
require("noice").setup({
cmdline= {
view="cmdline",
},
})
end,
},
-- 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.10.0-dev-2098+g92672a161
Operating system/version
Windows 11 23H2
Describe the bug
This could be related to the known issue described here. If it's a duplicate, please feel free to close it as such.
That being said, this is only occurring on nightly. I cannot reproduce the problem in the current v9 release.
The best way I can describe the problem is that the cmd line is one char behind when doing substitute commands. For example, if I type
%s/text
the cmd line will show%s/tex
instead. You can see this in the screenshot below:Steps To Reproduce
:%s/test
.Expected Behavior
Typed characters and displayed characters should match.
Repro
The text was updated successfully, but these errors were encountered: