The magical plug-in in IDEA——Smart Input (automatically switches input method)

Recommended column: Development environment configuration guide

It is committed to recording the installation and environment configuration operations of various software during the learning process, and provides detailed step instructions and rich illustrations. Covers the configuration of common development tools and server components such as Java, Python, IntelliJ IDEA, Tomcat, MySQL, etc., providing a practical and comprehensive configuration guide for beginners to help you easily start your programmer journey.

introduction

In modern software development, IDEs (Integrated Development Environments) play a vital role. For most developers, JetBrains' IntelliJ IDEA is undoubtedly one of the most popular and widely used IDEs. However, did you know that the power of IDEA is not limited to its built-in feature set? In fact, this powerful IDE also provides a very powerful mechanism that allows developers to customize and extend it according to their needs and preferences. This mechanism is - plug-in! By using plug-ins, you can mold IDEA into the perfect tool for your personal workflow. Next, let's deeply explore the charm of plug-ins in IDEA and see how to apply them to your own development process to improve efficiency, reduce duplication of work, and obtain a more enjoyable development experience.

Steps to introduce plugins

1.file->Settings->

Insert image description here

2.Plugins, then install it. Finally, click OK. Generally, you need to restart idea after installing the plug-in.

Insert image description here

Smart Input (automatic switching of input methods)

  • Function:

For developers whose native language is Chinese, they often need to switch between Chinese/English input methods when writing code. And because they don’t know which input state they are in, sometimes they find that the input method is wrong halfway through input, so they delete it and re-enter it. , seriously affecting the coding efficiency.
In fact, it is clear which input method needs to be used in which situation. In this case, the IDE can help us automatically switch the input method.

  • Instructions

1. When the plug-in is introduced and restarted, the following page will pop up. Click Open in browser (no pop-up click) to use the document.

Insert image description here

  • How to set up
    Insert image description here

1. After the first introduction and restart, there will be the following prompt, just open it

Insert image description here

2. If you haven’t clicked File-》Settings-》OtherSettings, you can set it according to your own preferences.

Insert image description here
Insert image description here

  • Effect after use
  • Will automatically switch the input method according to the current usage scenario

Insert image description here
For more features, please see the official documentation: Getting started with SmartInput for Windows

Guess you like

Origin blog.csdn.net/qq_54796785/article/details/133266935