I am not new to Vim but I am new to using plugins to upgrade the Vim experience. I recently installed vim-plug; the goal being what is usually the goal of anyone installing vim-plug: to automate the process of installing, upgrading and using Vim plugins.
I am facing an issue when I add the line
:PlugUpdate
in my .vimrc
file. Indeed, when this is the case whenever I try to open a file through Vim I get a page like this:
[Plugins] .vimrc X
1 Updated. Elapsed time: 1.007506 sec.
2 [==]
3
4 - Finishing ... Done!
5 - vimtex: Already up to date.
6 - NERDTree: Already up to date.
This is an expected behavior and I do not worry about it. My issue is however when I try to move on from this page to access the document I was trying to open. Trying the usual
:q
Does not work: it seems to open an empty document. My question is then: what am I doing wrong?
:PlugUpdate
in yourvimrc
. For a more thorough answer, you would need to edit and share a minimalvimrc
that exhibits the behavior.:bd
to close thevim-plug
buffer instead of:q
?