当我在打字稿文件(.ts)中创建类型定义时,我没有选择在VS Code中折叠该定义的选项。例如:
sqrt(n)
我没有左边距中的选项来折叠此定义。我是否缺少允许这样做的设置?像prettier这样的扩展程序是否可以添加此功能?我一直找不到解决方案,所以我目前的解决方法是在其周围放置一个区域。
答案 0 :(得分:0)
1)Ctrl + shift + p首选项:打开设置(JSON)
2)添加
"[javascript]": {
"editor.foldingStrategy": "indentation"
},
"[javascriptreact]": {
"editor.foldingStrategy": "indentation"
},
"[typescript]": {
"editor.foldingStrategy": "indentation"
},
"[typescriptreact]": {
"editor.foldingStrategy": "indentation"
}
3)全部