Home > Development Tools > VSCode > body text

How to open user-defined configuration in vscode

Release: 2020-01-09 14:57:48
Original
5460 people have browsed it

How to open user-defined configuration in vscode

How to open user-defined configuration in vscode:

Use the Ctrl Shift P shortcut key to open the command panel, enter settings, and select:

Select>Preferences: Open Settings (JSON) to perform user-defined settings

The file path is C:\Users\Administrator\AppData\Roaming\Code\User\settings. json.

Select>Preferences: Open Default Settings (JSON), which is the default setting (read-only).

Purpose:

In the user configuration file, some options can be customized.

Press JSON format and add it.

My settings.json defaults to:

{
    "workbench.colorTheme": "Solarized Dark+",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
Copy after login

Modify:

{
    "workbench.colorTheme": "Solarized Dark+",
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    /*  自定义的配置 */
    "配置名": "值"  /* 可多个 */
}
Copy after login

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of How to open user-defined configuration in vscode. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!