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 dc7502c commit f2372c9Copy full SHA for f2372c9
packages/vscode-tailwindcss/src/extension.ts
@@ -212,15 +212,6 @@ export async function activate(context: ExtensionContext) {
212
outputChannel: outputChannel,
213
revealOutputChannelOn: RevealOutputChannelOn.Never,
214
middleware: {
215
- async provideHover(document, position, token, next) {
216
- let result = await next(document, position, token)
217
- result.contents = result.contents.map((content) => {
218
- // @ts-ignore
219
- content.isTrusted = true
220
- return content
221
- })
222
- return result
223
- },
224
async resolveCompletionItem(item, token, next) {
225
let result = await next(item, token)
226
let selections = Window.activeTextEditor.selections
0 commit comments