Open dheerajchand opened 2 years ago
definitely should not take very long at all. Try just running this: vim +PluginInstall +qall
, just removing the output redirection here: https://github.com/atomantic/dotfiles/blob/main/install.sh#L272
To be clear, I run that command from the same directory in which install.sh
lives, T/F?
should be able to run that vim command from anywhere
Is this expected behaviour?
~ vim +PluginInstall +qall ✔ 2945 12:49:35 Error detected while processing /Users/dheerajchand/.dotfiles/homedir/.vim/bundle/vim-fugitive/plugin/fugitive.vim: line 470: E1208: -complete used without allowing argumentsline 471: E1208: -complete used without allowing argumentsline 475: E1208: -complete used without allowing argumentsline 478: E1208: -complete used without allowing argumentsError detected while processing /Users/dheerajchand/.dotfiles/homedir/.vim/bundle/vim-esformatter/plugin/esformatter.vim: line 111: E1208: -complete used without allowing argumentsline 112: E1208: -complete used without allowing argumentsPress ENTER or type command to continue
What do you get with vim +PluginList
? I've updated my plugins and they appear to be ok on my end....
You could try commenting out some of these plugin lines to see if it's something particular with particular plugins like vim-fugitive: https://github.com/atomantic/dotfiles/blob/main/homedir/.vimrc#L34
Error detected while processing /Users/dheerajchand/.dotfiles/homedir/.vim/bundle/vim-fugitive/plugin/fugitive.vim:
line 470: E1208: -complete used without allowing argumentsline 471: E1208: -complete used without allowing argumentsline 475: E1208: -complete used without allowing argumentsline 478: E1208: -complete used without allowing argumentsError detected while processing /Users/dheerajchand/.dotfiles/homedir/.vim/bundle/vim-esformatter/plugin/esformatter.vim:
line 111: E1208: -complete used without allowing argumentsline 112: E1208: -complete used without allowing argumentsPress ENTER or type command to continue```
<img width="942" alt="Screen Shot 2022-04-04 at 12 14 34 PM" src="https://user-images.githubusercontent.com/482844/161596661-eab81b9f-656e-4a4f-b3ae-16d5bb14be71.png">
maybe try changing the .vimrc to remove Fugitive and then do: vim +PluginClean
-- seems something is wrong with Fugitive...
looks like this error is identified as out of date fugitive: https://github.com/tpope/vim-fugitive/issues/1848
Maybe try force-killing vim-fugitive and reinstall:
rm -rf ~/.vim/bundle/vim-fugitive
vim +PluginInstall +qall
Hi,
I have been on the "install vim plugins" stage for three hours on a reasonably fast connection. Is this expected behaviour? Is it possible to add output to the process so I can what it's doing, if it's falling, etc.?