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)
NVIM v0.10.0-dev-468292d
Operating system/version
Windows 11 Pro 23H2 / Ubuntu 22.04.3
Describe the bug
vim-jp/vimdoc-ja may fail to update.
This is a plugin that contains vim help files translated into Japanese.
It is believed that this issue is caused by unconditionally updating the plugin's distribution file.
Ref: vim-jp/vimdoc-ja#279
Steps To Reproduce
Run nvim -u repro.lua
Run :Lazy update
Failed plugin update
Expected Behavior
Successful plugin update
no error occurs
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"vim-jp/vimdoc-ja",
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else herevim.opt.helplang= { "ja", "en" }
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
NVIM v0.10.0-dev-468292d
Operating system/version
Windows 11 Pro 23H2 / Ubuntu 22.04.3
Describe the bug
vim-jp/vimdoc-ja may fail to update.
This is a plugin that contains vim help files translated into Japanese.
It is believed that this issue is caused by unconditionally updating the plugin's distribution file.
Ref: vim-jp/vimdoc-ja#279
Steps To Reproduce
nvim -u repro.lua
:Lazy update
Expected Behavior
Successful plugin update
no error occurs
Repro
The text was updated successfully, but these errors were encountered: