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
perform a substitute of a word that is on the visible portion of the screen like %s/fun/bar.
Expected Behavior
The full %s/fun/bar should appear, but cmdline stops rendering after %s/fun.
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",
-- 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)
nightly
Operating system/version
all
Describe the bug
The workaround for neovim/neovim#20463 no longer works on nightly.
Possibly related to:
Steps To Reproduce
perform a substitute of a word that is on the visible portion of the screen like
%s/fun/bar
.Expected Behavior
The full
%s/fun/bar
should appear, but cmdline stops rendering after%s/fun
.Repro
The text was updated successfully, but these errors were encountered: