vscode 关闭反尖括号换行
时间: 2023-10-14 16:26:51 浏览: 276
去掉换行符
4星 · 用户满意度95%
您可以通过在 VS Code 中添加以下设置来关闭反尖括号换行:
```json
"html.format.wrapAttributes": "auto",
"html.format.wrapLineLength": 0,
"html.format.wrapAttributes": "preserve"
```
请注意,这些设置仅适用于 HTML 文件。如果您需要更改其他语言中的换行设置,请查看相关设置文档。
阅读全文