vscode,根据元素标签,显示展开收起
首选项-设置(可用图形化直接搜索,或用JSON格式显示)
用户设置(User Settings)1
2
3
4
5
6
7
8
9
10
11
12
13
14{
"[javascript]": {
"editor.foldingStrategy": "indentation"
},
"[javascriptreact]": {
"editor.foldingStrategy": "indentation"
},
"[typescript]": {
"editor.foldingStrategy": "indentation"
},
"[typescriptreact]": {
"editor.foldingStrategy": "indentation"
}
}
foldingStrategy:控制计算折叠范围的策略。auto
将使用语言特定的折叠策略 (若可用)。indentation
将使用基于缩进的折叠策略。