Updated faq (markdown)

Junegunn Choi 2024-02-02 17:41:03 +09:00
parent 38fdf0f8ff
commit 35ae42a9ab

7
faq.md

@ -16,6 +16,13 @@ Before applying the options, make sure that you're tackling the right problem by
vim --startuptime /tmp/log vim --startuptime /tmp/log
``` ```
### Plugins are not loaded unless I run `PlugInstall` or `PlugUpdate`
The symptom is commonly caused by the two configuration mistakes
1. Not putting `call plug#end()` after Plug statements
2. Putting the code in `.gvimrc` instead of `.vimrc` (See [#540](https://github.com/junegunn/vim-plug/issues/540))
### Shouldn't vim-plug update itself on `PlugUpdate` like Vundle? ### Shouldn't vim-plug update itself on `PlugUpdate` like Vundle?
There is a separate `PlugUpgrade` command and there are valid reasons behind the decision. There is a separate `PlugUpgrade` command and there are valid reasons behind the decision.