Home > Article > Development Tools > Detailed introduction to commonly used personalization settings in webstorm
This article brings you a detailed introduction to the commonly used personalization settings of webstorm. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
How to change the theme (font & color):
File -> settings -> Editor -> colors&fonts -> scheme name.Theme download address
How to prevent webstorm from opening the project file when it starts:
File -> Settings->General remove Reopen last project on startup.
How to display Chinese perfectly:
Check Override default fonts by (not recommended) in File -> Settings->Appearance, set Name: NSimSun, Size: 12
How to display line numbers:
File -> Settings->Editor, check "Show line numbers" to display the line numbers
How to automatically wrap the code:
File -> settings -> Editor "Use Soft Wraps in editor" is checked, and the code will automatically wrap.
How to click the cursor to display it at the end of the line:
File -> Settings->Editor Just uncheck "Allow placement of caret after end of line".
How to modify the shortcut keys:
File -> Settings->Keymap, then double-click the function you want to modify the shortcut, a prompt box will appear, follow the prompts
Replace with the shortcut keys you are familiar with the editor:
File ->Settings->Keymap, which supports mainstream IDEs such as Visual Studio, Eclipse, and NetBeans.
javascript class library prompt.
File -> settings -> Javascript -> Libraries -> Then select the javascript class library you often use in the list, and finally Download and Install is ok.
When developing js, I found that ctrl return is required to select the candidate option:
File -> Setting -> Editor -> Code Completion -> Preselect the first suggestion: "Smart" to "Always"
js prompt is relatively slow
File -> Code Completion -> Autopopup in and change 1000 to 0
git configuration:
File -> settings -> Editor -> github, go in and change the github account. If you don’t have git, you don’t need it.
Plug-in installation:
File - >plugins, then select the powerful plug-ins and install them. (The "css-X-fire" plug-in is used when using firebug to modify css properties, the css code in the editor will also change.)
The above is the detailed content of Detailed introduction to commonly used personalization settings in webstorm. For more information, please follow other related articles on the PHP Chinese website!