Skip to content

Commit

Permalink
#223368 enable hoverHint (#224114)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Jul 28, 2024
1 parent 7e80514 commit 2c46cf1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/vs/workbench/contrib/extensions/browser/extensionsWidgets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,18 @@ export class ExtensionHoverWidget extends ExtensionWidget {
}, focus);
},
placement: 'element'
}, this.options.target, { markdown: () => Promise.resolve(this.getHoverMarkdown()), markdownNotSupportedFallback: undefined });
},
this.options.target,
{
markdown: () => Promise.resolve(this.getHoverMarkdown()),
markdownNotSupportedFallback: undefined
},
{
appearance: {
showHoverHint: true
}
}
);
}
}

Expand Down

0 comments on commit 2c46cf1

Please sign in to comment.