We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have noticed that the column on the last line is sometimes rendered and sometimes it isn't.
MWE:
local root = vim.fn.fnamemodify("./.repro", ":p") for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name end local lazypath = root .. "/plugins/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, }) end vim.opt.runtimepath:prepend(lazypath) local plugins = { spec = { { "lukas-reineke/virt-column.nvim", opts = { virtcolumn = "+1,+2,+3", }, }, } } require("lazy").setup(plugins, { root = root .. "/plugins", }) vim.opt.textwidth = 10
Run nvim -u repro.lua.
nvim -u repro.lua
return {\n}
return {\n\n<BS>}
Two buffers are identical, but virtual column is different
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have noticed that the column on the last line is sometimes rendered and sometimes it isn't.
MWE:
Run
nvim -u repro.lua
.return {\n}
. This leads to this:return {\n\n<BS>}
in insert mode. This gives me:Two buffers are identical, but virtual column is different
The text was updated successfully, but these errors were encountered: