📜  如何仅折叠 vscode 中的方法 (1)

📅  最后修改于: 2023-12-03 14:51:44.676000             🧑  作者: Mango

如何仅折叠 VSCode 中的方法

在 VSCode 中,我们可以通过折叠代码来节省空间,但有时候我们只希望折叠方法而不影响其他部分的代码。以下是如何在 VSCode 中仅折叠方法的步骤:

步骤 1:打开设置

点击“文件(F)”菜单,选择“首选项(P)”选项,然后选择“设置(S)”,或者直接使用快捷键“Ctrl+,”(Windows/Linux)或“Command+,”(Mac)。

步骤 2:打开代码编辑器设置

在“设置(S)”界面中,在搜索框中输入“editor”,然后选择“Text Editor”一栏。

步骤 3:开启仅折叠方法选项

在“Text Editor”中,找到“代码折叠(Code Folding)”一项,然后勾选“仅折叠方法(Only Fold Multiline Functions)”选项。

{
    "editor.folding": true,
    "[typescript]": {
        "editor.foldingStrategy": "indentation"
    },
    "[javascript]": {
        "editor.foldingStrategy": "indentation"
    },
    "[json]": {
        "editor.foldingStrategy": "indentation"
    },
    "editor.showFoldingControls": "always",
    "editor.showIndentGuides": true,
    "editor.foldHighlight": true,
    "editor.rulers": [80],
    "editor.wordWrap": "on",
    "editor.fontSize": 14,
    "editor.tabSize": 2,
    "[[["Only Fold Multiline Functions"]]]": true
}
步骤 4:测试

现在你可以试着打开一个文件,在方法名所在的行点击来查看方法内容,再次点击时方法会收起。

现在你已经知道了如何在 VSCode 中仅折叠方法。尝试一下吧!