We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd8d71 commit f192884Copy full SHA for f192884
src/class-names/getPlugins.js
@@ -79,6 +79,7 @@ export default function getPlugins(config) {
79
if (pkg.name) {
80
return {
81
name: pkg.name,
82
+ description: pkg.description,
83
homepage: pkg.homepage,
84
contributes,
85
}
src/lib/configExplorer.ts
@@ -223,6 +223,7 @@ class TailwindDataProvider implements TreeDataProvider<ConfigItem> {
223
label: plugin.name || 'Anonymous',
224
key: ['plugins', i.toString()],
225
workspace: element.workspace,
226
+ tooltip: plugin.description,
227
contextValue: plugin.homepage ? 'hasPluginHomepage' : undefined,
228
}))
229
0 commit comments