首页 > 解决方案 > Customizing Icons on VS Code integrated terminal

问题描述

I found an interesting answer about integrating Cmder with VS Code's terminal. Link

Essentially integration comes down to this section of a User's settings.json

"Cmder": {
            "overrideName": true,
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "env": {"CMDER_ROOT": "C:\\tools\\cmder"},
            "args": [
                "/K",
                "%CMDER_ROOT%\\vendor\\bin\\vscode_init.cmd"
            ],
            "icon": "cmder",
        }

How do I set this up so the icon setting actually displays the lambda for Cmder on the tab?

Image reference of mine

标签: visual-studio-codevscode-settingscmder

解决方案


推荐阅读