eclipse-theia/theia
tree-view: support for 'view action' commands without icons
オープン
#8,246 opened on 2020/07/27
enhancementhelp wantedvscode
Repository metrics
- Stars
- (18,676 個のスター)
- PR merge metrics
- (平均マージ 15d 4h) (30d で 75 merged PRs)
説明
Feature Description:
The feature is to support commands without icons as inline view-actions.
At the moment, if a command does not define an icons property and is used as an inline view action it will not be rendered in the framework. The following is supported in vscode as the label is used instead.
For example, the following command is displayed as the following:
"commands": [
{
"command": "nodeDependencies.refreshEntry",
"title": "Refresh"
}
]