Icons - egodigital/vscode-powertools GitHub Wiki

Icons

GUI elements, like buttons or quick picks (item selectors), are able to parse and display icons inside their label texts.

The format of an icon placeholder is: $(ICON-NAME)

The example shows, how to create a button with pencil icon as prefix for its label:

{
    "ego.power-tools": {
        "buttons": [
            {
                "text": "$(pencil)  Open In Notepad",
                "action": {
                    "type": "shell",
                    "command": "\"notepad.exe\" \"${activeFile}\"",
                    "wait": false
                }
            }
        ]
    }
}