Intellij idea is a very excellent software development tool. It has this powerful plug-in system that can help developers complete many heavyweight functions. Today, let’s learn how to install and uninstall the plug-in of intellij idea.
IntelliJ IDEA supports a lot of plug-ins. Proficient in using plug-ins can effectively improve our development efficiency and user experience.
text
First, enter the plug-in installation interface:
IntelliJ IDEA -> Preferences -> Plugins ;File -> Settings -> Plugins .Label 1 : Displays the plug-in category of IntelliJ IDEA,
All plugins : Displays all plugins supported by IntelliJ IDEA;Enabled : Shows plugins that are currently enabled;Disabled : Shows plugins that are not currently enabled;Bundled : Displays all plug-ins that come with IntelliJ IDEA;Custom : Shows the plugin we installed ourselves. Note 2 : Tick √ means that the plug-in has been enabled;
Note 3 : Install the plug-in developed by JetBrains;
Note 4 : Install plugins provided by the plug-in repository;
Note 5 : Install the local downloaded plug-in.
As shown in the above image, IntelliJ IDEA's good support for plugins is shown. Taking Alibaba's recently launched "Alibaba Code Specification Check Plugin" as an example, enter Alibaba in the search area and a plug-in with a similar name will be displayed (if No Plugins found is displayed, click Serach in repositories for repositories), and then click Install to install this plug-in. Here, it should be noted that after the plug-in is installed successfully, you need to restart IntelliJ IDEA to make the plug-in take effect .
In addition, when we create a file format that is not supported by IntelliJ IDEA's current configuration, IntelliJ IDEA will automatically recognize the file and prompt us to download the corresponding plug-in to support it. As shown in the figure below, we created a Markdown format file named MarkdownPlugins.md , but our IntelliJ IDEA currently does not support Markdown plug-in. At this time, IntelliJ IDEA will automatically prompt us to install the Markdown plug-in:
As shown in the figure above, when we click Install plugins , select the corresponding plugin to download and install (automatically), then restart IntelliJ IDEA, and enter the contents in Markdown format to test:
As shown in the figure above, it is obvious that the Markdown plug-in is installed successfully, and IntelliJ IDEA has been able to recognize the syntax of Markdown!
Recommended commonly used plug-ins
| Plugin Name | Plugin introduction | Official website address |
|---|---|---|
| Alibaba Java Coding Guidelines | Alibaba Code Specification Check Plugin | https://plugins.jetbrains.com/plugin/10046-alibaba-java-coding-guidelines |
| Key promoter | Shortcut key prompt plug-in | https://plugins.jetbrains.com/plugin/4455?pr=idea |
| Grep Console | Custom console output format plugin | https://plugins.jetbrains.com/idea/plugin/7125-grep-console |
| CheckStyle-IDEA | Code Specification Check Plugin | https://plugins.jetbrains.com/plugin/1065?pr=idea |
| FindBugs-IDEA | Potential bug check | https://plugins.jetbrains.com/plugin/3847?pr=idea |
| MetricsReloaded | Code complexity check | https://plugins.jetbrains.com/plugin/93?pr=idea |
| Statistic | Code statistics plugin | https://plugins.jetbrains.com/plugin/4509?pr=idea |
| JRebel Plugin | Hot deployment plug-in | https://plugins.jetbrains.com/plugin/?id=4441 |
| CodeGlance | Show code map plugin | https://plugins.jetbrains.com/plugin/7275?pr=idea |
| Markdown Navigator | Markdown Editor Plugin | https://plugins.jetbrains.com/plugin/7896?pr=idea |
| Eclipse Code Formatter | Eclipse code style formatting plugin | https://plugins.jetbrains.com/plugin/6546?pr=idea |
| Jindent-Source Code Formatter | Custom template plugin | http://plugins.jetbrains.com/plugin/2170?pr=idea |
| Maven Helper | Maven auxiliary plug-in | https://plugins.jetbrains.com/plugin/7179-maven-helper |
| Properties to YAML Converter | Properties to YAML format plug-in | https://plugins.jetbrains.com/plugin/8000-properties-to-yaml-converter |
| Git Flow Integration | Git Flow Integration Plug-in | https://plugins.jetbrains.com/plugin/7315-git-flow-integration |
The above is all the content of this article. I hope it will be helpful to everyone's learning and I hope everyone will support Wulin.com more.