May 2018
Intermediate to advanced
168 pages
4h 2m
English
| Tip 4 | Understanding Scripts, Plugins, and Packages |
Packages are a new feature in Vim 8 that make it easy to manage your plugins. To put it simply: a package is a directory that contains one or more plugins. In turn, a plugin is a directory that contains one or more scripts, and a script is a standalone file containing instructions written in Vim script.
If that all makes sense, you might want to skip to the next tip, which demonstrates how to create your own package and install plugins to it. If you’re confused by this terminology, don’t worry. Read this tip to get a better grip on these concepts.
Vim has had basic support for scripts since version 5. A script is a standalone file containing instructions ...