在Visual Studio中,Windows上的Ctrl + K + F和Ctrl + K + D用于格式化,或在Visual Studio代码编辑器中“美化”代码的等效功能是什么?
当前回答
在Visual Studio code中,可以通过以下快捷方式使用代码格式化:
在Windows上Shift + Alt + F 在Mac上Shift + Option + F Linux下按Ctrl + Shift + I
或者,你可以找到快捷方式,以及其他快捷方式,通过子菜单视图/命令面板,也在编辑器中提供Ctrl +Shift+ P(或Mac上的Command +Shift+ P),然后搜索格式文档。
对于未保存的片段
打开命令面板(Win: F1或Ctrl+Shift+P) 找到“更改语言模式” 选择语言,例如json。到目前为止,语法应该被突出显示。 格式化文档(例如打开命令面板->“格式化文档”)
恢复格式化
选择文本 命令面板->连接行
“展示照片”
其他回答
不是这个。用这个:
菜单文件→首选项→工作空间设置 “编辑器。formatOnType”:真正的
您可以在菜单文件→首选项→键盘快捷键中添加按键绑定。
{ "key": "cmd+k cmd+d", "command": "editor.action.formatDocument" }
或者像Visual Studio那样:
{ "key": "ctrl+k ctrl+d", "command": "editor.action.formatDocument" }
出于某种原因,Alt + Shift + F在Mac Visual Studio Code 1.3.1中对我不起作用,实际上“格式化文档”命令根本不起作用。但是command Formatter工作得很好。
因此,您可以使用命令+ Shift + P并键入格式化程序或在菜单文件→首选项→键盘快捷键→命令+ K命令+ S中创建自己的快捷方式,然后键入格式化程序并添加快捷方式。
请看一个例子:
代码格式化快捷方式:
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文件。看看我的更新。
选择文本,右键单击选区,选择选项“命令调色板”:
打开一个新窗口。搜索“格式”,并根据需要选择有格式的选项。
推荐文章
- Visual Studio Code:格式没有使用缩进设置
- 如何排除文件扩展名和语言从“格式保存”在VSCode?
- Visual Studio代码- URI的目标不存在" package:flutter/material.dart "
- VSCode——如何设置调试Python程序的工作目录
- 是否可以配置控制+滚轮增加/减少缩放在VS Code?
- 如何禁用或隐藏滚动条/小地图?
- Visual Studio代码如何解决合并冲突与git?
- Visual Studio代码-在文件末尾插入换行符
- 如何重新启动VScode编辑扩展的配置?
- 在Atom编辑器中是否有格式化HTML的命令?
- Visual Studio代码PHP Intelephense保持显示不必要的错误
- 如何添加一个@顺风CSS规则CSS检查
- 我如何打开Visual Studio Code的设置。json文件?
- 在Visual Studio代码中运行的Angular应用程序中,TSLint扩展抛出错误
- 在Visual Studio代码编辑器中使用哪种字体以及如何更改字体?