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 an issue where vim-coiled-snake cannot be installed using neovim nightly and Packer.nvim
Error when trying to update using packer:
✗ Failed to update kalekundert/vim-coiled-snake
Errors:
Already up to date.
fatal: No url found for submodule path 'tests/issues/dummy_home_16/.vim/pack/dev/start/vim-gitgutter' in .gitmodules
431d705
Same error when running git submodule update --init --recursive which is what packer is using.
% git submodule update --init --recursive
fatal: No url found for submodule path 'tests/issues/dummy_home_16/.vim/pack/dev/start/vim-gitgutter' in .gitmodules
Result is that it wont install.
The text was updated successfully, but these errors were encountered:
I did a fast temporary fix for it by removing the vim-gitgutter directory. I can't actually find any submodule reference to the vim-gitgutter folder so im not sure really how this happend. It might be only my setup...
I confirm, plugin cannot be installed or even updated using Packer.nvim.
Temporary solution without modifying the source code is to clone plugin manually into your packer/opt dir:
and add lock=true option into your nvim config, to not try updating it during sync/update of all other packages.
This is what i used (+lazy-load it by file type) (path is just example):
localuse=require('packer').use-- FIXME: locked -> to not try updating it. Till fix arrive (kalekundert/vim-coiled-snake/issues/33)use {'kalekundert/vim-coiled-snake', lock=true, ft='python'} -- python code folding
I have an issue where vim-coiled-snake cannot be installed using neovim nightly and Packer.nvim
Error when trying to update using packer:
Same error when running
git submodule update --init --recursive
which is what packer is using.Result is that it wont install.
The text was updated successfully, but these errors were encountered: