Add missing 'the' in some phrases and sentences.
Use "Easy", not "Easier", because there are no comparisons in the same sentence or phrase.
This commit is contained in:
Raphael Martin Schindler 2020-08-02 08:52:56 -07:00 committed by GitHub
parent b2133cf2ec
commit 457bebcd30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ A minimalist Vim plugin manager.
### Pros. ### Pros.
- Easier to setup: Single file. No boilerplate code required. - Easy to set up: Single file. No boilerplate code required.
- Easier to use: Concise, intuitive syntax - Easy to use: Concise, intuitive syntax
- [Super-fast][40/4] parallel installation/update - [Super-fast][40/4] parallel installation/update
(with any of `+job`, `+python`, `+python3`, `+ruby`, or [Neovim][nv]) (with any of `+job`, `+python`, `+python3`, `+ruby`, or [Neovim][nv])
- Creates shallow clones to minimize disk space usage and download time - Creates shallow clones to minimize disk space usage and download time
@ -230,14 +230,14 @@ Plug 'junegunn/goyo.vim', { 'for': 'markdown' }
autocmd! User goyo.vim echom 'Goyo is now loaded!' autocmd! User goyo.vim echom 'Goyo is now loaded!'
``` ```
`for` option is generally not needed as most plugins for specific file types The `for` option is generally not needed as most plugins for specific file types
usually don't have too much code in `plugin` directory. You might want to usually don't have too much code in the `plugin` directory. You might want to
examine the output of `vim --startuptime` before applying the option. examine the output of `vim --startuptime` before applying the option.
### Post-update hooks ### Post-update hooks
There are some plugins that require extra steps after installation or update. There are some plugins that require extra steps after installation or update.
In that case, use `do` option to describe the task to be performed. In that case, use the `do` option to describe the task to be performed.
```vim ```vim
Plug 'Shougo/vimproc.vim', { 'do': 'make' } Plug 'Shougo/vimproc.vim', { 'do': 'make' }
@ -272,7 +272,7 @@ and only run when the repository has changed, but you can force it to run
unconditionally with the bang-versions of the commands: `PlugInstall!` and unconditionally with the bang-versions of the commands: `PlugInstall!` and
`PlugUpdate!`. `PlugUpdate!`.
Make sure to escape BARs and double-quotes when you write `do` option inline Make sure to escape BARs and double-quotes when you write the `do` option inline
as they are mistakenly recognized as command separator or the start of the as they are mistakenly recognized as command separator or the start of the
trailing comment. trailing comment.
@ -298,7 +298,7 @@ The installer takes the following steps when installing/updating a plugin:
1. Update submodules 1. Update submodules
2. Execute post-update hooks 2. Execute post-update hooks
The commands with `!` suffix ensure that all steps are run unconditionally. The commands with the `!` suffix ensure that all steps are run unconditionally.
### Articles ### Articles