在Visual Studio中,Windows上的Ctrl + K + F和Ctrl + K + D用于格式化,或在Visual Studio代码编辑器中“美化”代码的等效功能是什么?


当前回答

菜单文件→首选项→设置

"editor.formatOnType": true

当您输入分号时,它将被格式化。

或者,您也可以使用“editor”。formatOnSave”:真的。

其他回答

在Mac上,Shift + Alt + F适合我。

你可以在菜单中检查键绑定:

菜单文件→首选项→键盘快捷键和过滤关键字“格式”。

代码格式化快捷方式:

Visual Studio Code on Windows - Shift + Alt + F

Visual Studio Code on MacOS - Shift + Option + F

Visual Studio Code on Ubuntu - Ctrl + Shift + I

如果需要,还可以使用首选项设置自定义此快捷方式。

保存文件时的代码格式:

Visual Studio Code允许用户自定义默认设置。

如果您想在保存时自动格式化您的内容,请在Visual Studio code的工作空间设置中添加以下代码片段。

菜单文件→首选项→工作空间设置

{
    // Controls if the editor should automatically format the line after typing
    "beautify.onSave": true,

    "editor.formatOnSave": true,

    // You can auto format any files based on the file extensions type.
    "beautify.JSfiles": [
        "js",
        "json",
        "jsbeautifyrc",
        "jshintrc",
        "ts"
    ]
}

注意:现在你可以自动格式化TypeScript文件。看看我的更新。

Shift + Alt + F在1.17.2和更高版本中可以很好地完成这项工作。

出于某种原因,Alt + Shift + F在Mac Visual Studio Code 1.3.1中对我不起作用,实际上“格式化文档”命令根本不起作用。但是command Formatter工作得很好。

因此,您可以使用命令+ Shift + P并键入格式化程序或在菜单文件→首选项→键盘快捷键→命令+ K命令+ S中创建自己的快捷方式,然后键入格式化程序并添加快捷方式。

请看一个例子:

右键单击文件内容区域(文本)中的某处 从菜单中选择格式文件: Windows: Alt + Shift + F Linux: Alt + Shift +我 macOS:⌥+⇧+ F