如何在Visual Studio代码中格式化代码(VSCode)
Windows上的Ctrl + K + F和Ctrl + K + D相当于在Visual Studio代码编辑器中进行格式化或“美化”代码的等效代码?
代码格式通过以下快捷方式在VS Code中提供:
或者,您可以通过编辑器中的Ctrl + Shift + P(或Mac上的Command + Shift + P)编辑器提供的搜索功能找到快捷方式以及其他快捷方式,然后搜索格式文档 。
您可以在首选项 - >键盘快捷键中添加一个键盘绑定。
{ "key": "cmd+k cmd+d", "command": "editor.action.formatDocument" }
或者像Visual Studio一样:
{ "key": "ctrl+k ctrl+d", "command": "editor.action.formatDocument" }
代码格式快捷方式:
Windows上的VSCode - Shift + Alt + F
MacOS上的VSCode - Shift + Alt + F
Ubuntu上的VSCode - Ctrl + Shift + I
如果需要,也可以使用首选项设置自定义此快捷方式。
代码格式保存文件时:
Visual Studio代码允许用户可以自定义默认设置。
如果您想在保存时自动格式化内容,请在Visual Studio代码的工作区设置中添加以下代码片段。
文件 - >首选项 - >工作区设置
{
// Controls if the editor should automatically format the line after typing
"beautify.onSave": true,
"editor.formatOnSave": true,
// You can auto formate any files based on extensions type.
"beautify.JSfiles": [
"js",
"json",
"jsbeautifyrc",
"jshintrc",
"ts"
]
}
注意:现在您可以自动格式打印脚本文件检查我的更新
链接地址: http://www.djcxy.com/p/25449.html