试图在Intellij中找到等效的Ctrl+ Shift+-来折叠/扩展所有功能。
Answers:
这里是。
Ctrl+Shift+[ Fold (collapse) region editor.fold
Ctrl+Shift+] Unfold (uncollapse) region editor.unfold
Ctrl+K Ctrl+[ Fold (collapse) all subregions editor.foldRecursively
Ctrl+K Ctrl+] Unfold (uncollapse) all subregions editor.unfoldRecursively
Ctrl+K Ctrl+0 Fold (collapse) all regions editor.foldAll
Ctrl+K Ctrl+J Unfold (uncollapse) all regions
在此链接上查看“ Visual Studio代码键绑定”部分。
在pdf中还提供了特定于平台的键盘快捷键。
您可以为此设置自定义值。
Open Keyboard Shortcuts
collapse
Collapse All
然后Collapse Folders in Explorer
像我一样设置快捷方式或者,您可以打开keybindings.json
文件并将其添加到主阵列。
,
{
"key": "cmd+k cmd+s",
"command": "search.action.collapseSearchResults"
},
{
"key": "cmd+k cmd+e",
"command": "workbench.files.action.collapseExplorerFolders"
}
转到文件->首选项->键盘快捷键(或Ctrl + K Ctrl + S)
搜索单词fold all
您需要的是:
设置自定义键盘快捷键