Home  >  Article  >  Operation and Maintenance  >  How to find the vim plugin you want

How to find the vim plugin you want

齐天大圣
齐天大圣Original
2020-06-13 08:20:372114browse

I wrote an article before explaining how to use vim-plug to install vim plug-ins. Some students may have questions, so how do I find the plug-ins I want?

First of all, there is a prerequisite, that is, there is a demand. For example, if you want automatic code completion when writing PHP, then you can find a plug-in in this area. If you have no need for this, then installing these plug-ins is a waste of time, energy, and computer disk space.

The following introduces several methods to get the plug-in you want.

Use search engine

For example, if I enter vim php on Baidu, it will automatically pop up several keywords

How to find the vim plugin you want

There is a trick for using search engines. Enter keywords and separate multiple keywords with spaces. This will make it easier for search engines to find the content you want.

At this time, I found that php code completion does not require installing a plug-in. You only need to add the following line to the configuration file

autocmd FileType php set omnifunc=phpcomplete#CompletePHP

Now, we only need to press ctrl x, ctrl o can complete the automatic completion of php code

How to find the vim plugin you want

Search in github

because absolutely Most vim plug-ins are hosted on github, so we can search directly in github. It has an advantage over search engines in that it can filter out some spam information.

For example, I want to search for directory-related plug-ins, because the vim editor does not have directory management by default, which is not very convenient for developing large references.

Ask for advice from seniors

When you want to install the vim plug-in, you can consult with colleagues or seniors or in the group, and ask them Are there any good related plug-ins that you would recommend?

vimawesome.com

This is a magical website, basically all the plug-ins you want can be found here.

How to find the vim plugin you want

This website has divided plug-ins into several major categories, namely programming language, completion, interface, integration related, commands, and others.

In addition, the right side of the website interface is arranged by the number of stars by default. Generally, plug-ins for daily use can be found on the first 5 pages.

The above is the detailed content of How to find the vim plugin you want. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn