tool:vscode配置文件(config.json)设置
Contents
参考:
Getting Started with Python in VS Code
【笔记】vscode做C++开发,launch.json、tasks.json、settings.json写法示例
教你如何快速解决需要在每个新项目新建launch.json文件的问题?
Tips and Tricks
Ctrl+R
: Displays a Quick Pick dropdown with the list from File > Open Recent with recently opened folders and workspaces followed by files.
Command line
|
|
.vscode folder
Workspace specific files are in a .vscode
folder at the root. For example, tasks.json
for the Task Runner and launch.json
for the debugger.
Ignore files / folders
Removes these files / folders from your editor window.
Remove these files / folders from search results.
launch.json、tasks.json、settings.json
settings.json
- User Settings - Settings that apply globally to any instance of VS Code you open.
- Workspace Settings - Settings stored inside your workspace and only apply when the workspace is opened.
User Settings
Settings file locations#
Depending on your platform, the user settings file is located here:
- Windows
%APPDATA%\Code\User\settings.json
- macOS
$HOME/Library/Application\ Support/Code/User/settings.json
- Linux
$HOME/.config/Code/User/settings.json